From bf9e1c80852d88067c098968c4f51f282f5b2495 Mon Sep 17 00:00:00 2001 From: John Morrissey <544926+tachyon-beep@users.noreply.github.com> Date: Sat, 6 Jun 2026 12:00:13 +1000 Subject: [PATCH] chore: untrack local integration config (.mcp.json, loomweave.yaml, wardline.yaml) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit These are machine-local integration config — MCP server paths and loopback service URLs (loomweave/filigree/wardline) — that leaked into the published package repo via PR #4. They are developer-environment artifacts, not package content, so stop tracking them and add them to .gitignore (they remain on disk for local use). Lacuna keeps its own copies tracked as the reference demo bed; this only affects legis. Co-Authored-By: Claude Opus 4.8 --- .gitignore | 4 ++++ .mcp.json | 31 ------------------------------- loomweave.yaml | 44 -------------------------------------------- wardline.yaml | 4 ---- 4 files changed, 4 insertions(+), 79 deletions(-) delete mode 100644 .mcp.json delete mode 100644 loomweave.yaml delete mode 100644 wardline.yaml diff --git a/.gitignore b/.gitignore index c052413..ab4b814 100644 --- a/.gitignore +++ b/.gitignore @@ -15,3 +15,7 @@ __pycache__/ .filigree .filigree.conf .coverage +.mcp.json +loomweave.yaml +wardline.yaml +.loomweave/loomweave.lock diff --git a/.mcp.json b/.mcp.json deleted file mode 100644 index 8e84a31..0000000 --- a/.mcp.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "mcpServers": { - "loomweave": { - "args": [ - "serve" - ], - "command": "/home/john/.local/share/uv/tools/loomweave/bin/loomweave", - "env": {}, - "type": "stdio" - }, - "wardline": { - "args": [ - "mcp", - "--root", - ".", - "--loomweave-url", - "http://127.0.0.1:9111", - "--filigree-url", - "http://127.0.0.1:8426/api/weft/scan-results" - ], - "command": "/home/john/.local/bin/wardline", - "type": "stdio" - }, - "filigree": { - "type": "stdio", - "command": "/home/john/.local/bin/filigree-mcp", - "args": [], - "env": {} - } - } -} \ No newline at end of file diff --git a/loomweave.yaml b/loomweave.yaml deleted file mode 100644 index 24369d7..0000000 --- a/loomweave.yaml +++ /dev/null @@ -1,44 +0,0 @@ -integrations: - filigree: - actor: loomweave-mcp - base_url: http://127.0.0.1:8426 - enabled: true - timeout_seconds: 5 - token_env: FILIGREE_API_TOKEN -llm_policy: - allow_live_provider: false - cache_max_age_days: 180 - claude_cli: - exclude_dynamic_system_prompt_sections: true - executable: claude - max_turns: 2 - model: null - no_session_persistence: true - permission_mode: plan - timeout_seconds: 300 - tools: [] - codex_cli: - executable: codex - model: null - profile: null - sandbox: read-only - timeout_seconds: 300 - enabled: false - max_inferred_edges_per_caller: 8 - model_id: anthropic/claude-sonnet-4.6 - openrouter: - api_key_env: OPENROUTER_API_KEY - attribution: - referer: https://github.com/foundryside-dev/loomweave - title: Loomweave - endpoint_url: https://openrouter.ai/api/v1 - provider: openrouter - session_token_ceiling: 1000000 -serve: - http: - bind: 127.0.0.1:9111 - enabled: true - wardline_taint_write: true - mcp: - enable_write_tools: false -version: 1 diff --git a/wardline.yaml b/wardline.yaml deleted file mode 100644 index 6ec68a1..0000000 --- a/wardline.yaml +++ /dev/null @@ -1,4 +0,0 @@ -filigree: - url: http://127.0.0.1:8426/api/weft/scan-results -loomweave: - url: http://127.0.0.1:9111