Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,29 @@ jobs:

- name: Verify package contents
run: npm pack --dry-run

smoke-test:
runs-on: ubuntu-latest
needs: build-and-test
steps:
- uses: actions/checkout@v4

- uses: actions/setup-node@v4
with:
node-version: 22

- run: npm install
- run: npm run build
- run: npm pack

- name: Install from tarball and smoke test
run: |
mkdir /tmp/smoke
cd /tmp/smoke
npm init -y
npm install $GITHUB_WORKSPACE/tripwire-mcp-tripwire-*.tgz
npx tripwire --version
npx tripwire --help
npx tripwire init
npx tripwire lint
npx tripwire list
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Tripwire

[![npm version](https://img.shields.io/npm/v/@tripwire-mcp/tripwire)](https://www.npmjs.com/package/@tripwire-mcp/tripwire)
[![CI](https://github.com/simonrueba/tripwire/actions/workflows/ci.yml/badge.svg)](https://github.com/simonrueba/tripwire/actions/workflows/ci.yml)
[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)
[![Node.js](https://img.shields.io/badge/node-%3E%3D18-brightgreen)](https://nodejs.org/)
[![TypeScript](https://img.shields.io/badge/TypeScript-strict-blue)](https://www.typescriptlang.org/)

**Context injection for AI agents, triggered by the codebase itself.**

Tripwire is a local MCP server that auto-injects relevant context when an agent reads files in your project. Define tripwires on paths — when an agent steps on one, it gets the knowledge it needs before it can do damage.
Expand Down
11 changes: 8 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tripwire-mcp/tripwire",
"version": "0.1.0",
"version": "0.1.1",
"description": "Context injection for AI agents, triggered by the codebase itself",
"type": "module",
"bin": {
Expand Down Expand Up @@ -39,10 +39,15 @@
},
"keywords": [
"mcp",
"model-context-protocol",
"ai",
"context",
"ai-agent",
"context-injection",
"tripwire",
"agent"
"claude",
"cursor",
"code-quality",
"developer-tools"
],
"license": "MIT",
"engines": {
Expand Down