stravinsky 0.4.18__py3-none-any.whl → 0.4.66__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of stravinsky might be problematic. Click here for more details.
- mcp_bridge/__init__.py +1 -1
- mcp_bridge/auth/__init__.py +16 -6
- mcp_bridge/auth/cli.py +202 -11
- mcp_bridge/auth/oauth.py +1 -2
- mcp_bridge/auth/openai_oauth.py +4 -7
- mcp_bridge/auth/token_store.py +0 -1
- mcp_bridge/cli/__init__.py +1 -1
- mcp_bridge/cli/install_hooks.py +503 -107
- mcp_bridge/cli/session_report.py +0 -3
- mcp_bridge/config/__init__.py +2 -2
- mcp_bridge/config/hook_config.py +3 -5
- mcp_bridge/config/rate_limits.py +108 -13
- mcp_bridge/hooks/HOOKS_SETTINGS.json +17 -4
- mcp_bridge/hooks/__init__.py +14 -4
- mcp_bridge/hooks/agent_reminder.py +4 -4
- mcp_bridge/hooks/auto_slash_command.py +5 -5
- mcp_bridge/hooks/budget_optimizer.py +2 -2
- mcp_bridge/hooks/claude_limits_hook.py +114 -0
- mcp_bridge/hooks/comment_checker.py +3 -4
- mcp_bridge/hooks/compaction.py +2 -2
- mcp_bridge/hooks/context.py +2 -1
- mcp_bridge/hooks/context_monitor.py +2 -2
- mcp_bridge/hooks/delegation_policy.py +85 -0
- mcp_bridge/hooks/directory_context.py +3 -3
- mcp_bridge/hooks/edit_recovery.py +3 -2
- mcp_bridge/hooks/edit_recovery_policy.py +49 -0
- mcp_bridge/hooks/empty_message_sanitizer.py +2 -2
- mcp_bridge/hooks/events.py +160 -0
- mcp_bridge/hooks/git_noninteractive.py +4 -4
- mcp_bridge/hooks/keyword_detector.py +8 -10
- mcp_bridge/hooks/manager.py +35 -22
- mcp_bridge/hooks/notification_hook.py +13 -6
- mcp_bridge/hooks/parallel_enforcement_policy.py +67 -0
- mcp_bridge/hooks/parallel_enforcer.py +5 -5
- mcp_bridge/hooks/parallel_execution.py +22 -10
- mcp_bridge/hooks/post_tool/parallel_validation.py +103 -0
- mcp_bridge/hooks/pre_compact.py +8 -9
- mcp_bridge/hooks/pre_tool/agent_spawn_validator.py +115 -0
- mcp_bridge/hooks/preemptive_compaction.py +2 -3
- mcp_bridge/hooks/routing_notifications.py +80 -0
- mcp_bridge/hooks/rules_injector.py +11 -19
- mcp_bridge/hooks/session_idle.py +4 -4
- mcp_bridge/hooks/session_notifier.py +4 -4
- mcp_bridge/hooks/session_recovery.py +4 -5
- mcp_bridge/hooks/stravinsky_mode.py +1 -1
- mcp_bridge/hooks/subagent_stop.py +1 -3
- mcp_bridge/hooks/task_validator.py +2 -2
- mcp_bridge/hooks/tmux_manager.py +7 -8
- mcp_bridge/hooks/todo_delegation.py +4 -1
- mcp_bridge/hooks/todo_enforcer.py +180 -10
- mcp_bridge/hooks/truncation_policy.py +37 -0
- mcp_bridge/hooks/truncator.py +1 -2
- mcp_bridge/metrics/cost_tracker.py +115 -0
- mcp_bridge/native_search.py +93 -0
- mcp_bridge/native_watcher.py +118 -0
- mcp_bridge/notifications.py +3 -4
- mcp_bridge/orchestrator/enums.py +11 -0
- mcp_bridge/orchestrator/router.py +165 -0
- mcp_bridge/orchestrator/state.py +32 -0
- mcp_bridge/orchestrator/visualization.py +14 -0
- mcp_bridge/orchestrator/wisdom.py +34 -0
- mcp_bridge/prompts/__init__.py +1 -8
- mcp_bridge/prompts/dewey.py +1 -1
- mcp_bridge/prompts/planner.py +2 -4
- mcp_bridge/prompts/stravinsky.py +53 -31
- mcp_bridge/proxy/__init__.py +0 -0
- mcp_bridge/proxy/client.py +70 -0
- mcp_bridge/proxy/model_server.py +157 -0
- mcp_bridge/routing/__init__.py +43 -0
- mcp_bridge/routing/config.py +250 -0
- mcp_bridge/routing/model_tiers.py +135 -0
- mcp_bridge/routing/provider_state.py +261 -0
- mcp_bridge/routing/task_classifier.py +190 -0
- mcp_bridge/server.py +363 -34
- mcp_bridge/server_tools.py +298 -6
- mcp_bridge/tools/__init__.py +19 -8
- mcp_bridge/tools/agent_manager.py +549 -799
- mcp_bridge/tools/background_tasks.py +13 -17
- mcp_bridge/tools/code_search.py +54 -51
- mcp_bridge/tools/continuous_loop.py +0 -1
- mcp_bridge/tools/dashboard.py +19 -0
- mcp_bridge/tools/find_code.py +296 -0
- mcp_bridge/tools/init.py +1 -0
- mcp_bridge/tools/list_directory.py +42 -0
- mcp_bridge/tools/lsp/__init__.py +8 -8
- mcp_bridge/tools/lsp/manager.py +51 -28
- mcp_bridge/tools/lsp/tools.py +98 -65
- mcp_bridge/tools/model_invoke.py +1047 -152
- mcp_bridge/tools/mux_client.py +75 -0
- mcp_bridge/tools/project_context.py +1 -2
- mcp_bridge/tools/query_classifier.py +132 -49
- mcp_bridge/tools/read_file.py +84 -0
- mcp_bridge/tools/replace.py +45 -0
- mcp_bridge/tools/run_shell_command.py +38 -0
- mcp_bridge/tools/search_enhancements.py +347 -0
- mcp_bridge/tools/semantic_search.py +677 -92
- mcp_bridge/tools/session_manager.py +0 -2
- mcp_bridge/tools/skill_loader.py +0 -1
- mcp_bridge/tools/task_runner.py +5 -7
- mcp_bridge/tools/templates.py +3 -3
- mcp_bridge/tools/tool_search.py +331 -0
- mcp_bridge/tools/write_file.py +29 -0
- mcp_bridge/update_manager.py +33 -37
- mcp_bridge/update_manager_pypi.py +6 -8
- mcp_bridge/utils/cache.py +82 -0
- mcp_bridge/utils/process.py +71 -0
- mcp_bridge/utils/session_state.py +51 -0
- mcp_bridge/utils/truncation.py +76 -0
- {stravinsky-0.4.18.dist-info → stravinsky-0.4.66.dist-info}/METADATA +84 -35
- stravinsky-0.4.66.dist-info/RECORD +198 -0
- {stravinsky-0.4.18.dist-info → stravinsky-0.4.66.dist-info}/entry_points.txt +1 -0
- stravinsky_claude_assets/HOOKS_INTEGRATION.md +316 -0
- stravinsky_claude_assets/agents/HOOKS.md +437 -0
- stravinsky_claude_assets/agents/code-reviewer.md +210 -0
- stravinsky_claude_assets/agents/comment_checker.md +580 -0
- stravinsky_claude_assets/agents/debugger.md +254 -0
- stravinsky_claude_assets/agents/delphi.md +495 -0
- stravinsky_claude_assets/agents/dewey.md +248 -0
- stravinsky_claude_assets/agents/explore.md +1198 -0
- stravinsky_claude_assets/agents/frontend.md +472 -0
- stravinsky_claude_assets/agents/implementation-lead.md +164 -0
- stravinsky_claude_assets/agents/momus.md +464 -0
- stravinsky_claude_assets/agents/research-lead.md +141 -0
- stravinsky_claude_assets/agents/stravinsky.md +730 -0
- stravinsky_claude_assets/commands/delphi.md +9 -0
- stravinsky_claude_assets/commands/dewey.md +54 -0
- stravinsky_claude_assets/commands/git-master.md +112 -0
- stravinsky_claude_assets/commands/index.md +49 -0
- stravinsky_claude_assets/commands/publish.md +86 -0
- stravinsky_claude_assets/commands/review.md +73 -0
- stravinsky_claude_assets/commands/str/agent_cancel.md +70 -0
- stravinsky_claude_assets/commands/str/agent_list.md +56 -0
- stravinsky_claude_assets/commands/str/agent_output.md +92 -0
- stravinsky_claude_assets/commands/str/agent_progress.md +74 -0
- stravinsky_claude_assets/commands/str/agent_retry.md +94 -0
- stravinsky_claude_assets/commands/str/cancel.md +51 -0
- stravinsky_claude_assets/commands/str/clean.md +97 -0
- stravinsky_claude_assets/commands/str/continue.md +38 -0
- stravinsky_claude_assets/commands/str/index.md +199 -0
- stravinsky_claude_assets/commands/str/list_watchers.md +96 -0
- stravinsky_claude_assets/commands/str/search.md +205 -0
- stravinsky_claude_assets/commands/str/start_filewatch.md +136 -0
- stravinsky_claude_assets/commands/str/stats.md +71 -0
- stravinsky_claude_assets/commands/str/stop_filewatch.md +89 -0
- stravinsky_claude_assets/commands/str/unwatch.md +42 -0
- stravinsky_claude_assets/commands/str/watch.md +45 -0
- stravinsky_claude_assets/commands/strav.md +53 -0
- stravinsky_claude_assets/commands/stravinsky.md +292 -0
- stravinsky_claude_assets/commands/verify.md +60 -0
- stravinsky_claude_assets/commands/version.md +5 -0
- stravinsky_claude_assets/hooks/README.md +248 -0
- stravinsky_claude_assets/hooks/comment_checker.py +193 -0
- stravinsky_claude_assets/hooks/context.py +38 -0
- stravinsky_claude_assets/hooks/context_monitor.py +153 -0
- stravinsky_claude_assets/hooks/dependency_tracker.py +73 -0
- stravinsky_claude_assets/hooks/edit_recovery.py +46 -0
- stravinsky_claude_assets/hooks/execution_state_tracker.py +68 -0
- stravinsky_claude_assets/hooks/notification_hook.py +103 -0
- stravinsky_claude_assets/hooks/notification_hook_v2.py +96 -0
- stravinsky_claude_assets/hooks/parallel_execution.py +241 -0
- stravinsky_claude_assets/hooks/parallel_reinforcement.py +106 -0
- stravinsky_claude_assets/hooks/parallel_reinforcement_v2.py +112 -0
- stravinsky_claude_assets/hooks/pre_compact.py +123 -0
- stravinsky_claude_assets/hooks/ralph_loop.py +173 -0
- stravinsky_claude_assets/hooks/session_recovery.py +263 -0
- stravinsky_claude_assets/hooks/stop_hook.py +89 -0
- stravinsky_claude_assets/hooks/stravinsky_metrics.py +164 -0
- stravinsky_claude_assets/hooks/stravinsky_mode.py +146 -0
- stravinsky_claude_assets/hooks/subagent_stop.py +98 -0
- stravinsky_claude_assets/hooks/todo_continuation.py +111 -0
- stravinsky_claude_assets/hooks/todo_delegation.py +96 -0
- stravinsky_claude_assets/hooks/tool_messaging.py +281 -0
- stravinsky_claude_assets/hooks/truncator.py +23 -0
- stravinsky_claude_assets/rules/deployment_safety.md +51 -0
- stravinsky_claude_assets/rules/integration_wiring.md +89 -0
- stravinsky_claude_assets/rules/pypi_deployment.md +220 -0
- stravinsky_claude_assets/rules/stravinsky_orchestrator.md +32 -0
- stravinsky_claude_assets/settings.json +152 -0
- stravinsky_claude_assets/skills/chrome-devtools/SKILL.md +81 -0
- stravinsky_claude_assets/skills/sqlite/SKILL.md +77 -0
- stravinsky_claude_assets/skills/supabase/SKILL.md +74 -0
- stravinsky_claude_assets/task_dependencies.json +34 -0
- stravinsky-0.4.18.dist-info/RECORD +0 -88
- {stravinsky-0.4.18.dist-info → stravinsky-0.4.66.dist-info}/WHEEL +0 -0
|
@@ -0,0 +1,152 @@
|
|
|
1
|
+
{
|
|
2
|
+
"statusLine": {
|
|
3
|
+
"type": "command",
|
|
4
|
+
"command": "~/.claude/statusline.sh"
|
|
5
|
+
},
|
|
6
|
+
"hooks": {
|
|
7
|
+
"Notification": [
|
|
8
|
+
{
|
|
9
|
+
"matcher": "*",
|
|
10
|
+
"hooks": [
|
|
11
|
+
{
|
|
12
|
+
"type": "command",
|
|
13
|
+
"command": "python3 ~/.claude/hooks/notification_hook.py"
|
|
14
|
+
}
|
|
15
|
+
]
|
|
16
|
+
}
|
|
17
|
+
],
|
|
18
|
+
"SubagentStop": [
|
|
19
|
+
{
|
|
20
|
+
"matcher": "*",
|
|
21
|
+
"hooks": [
|
|
22
|
+
{
|
|
23
|
+
"type": "command",
|
|
24
|
+
"command": "python3 ~/.claude/hooks/subagent_stop.py"
|
|
25
|
+
}
|
|
26
|
+
]
|
|
27
|
+
}
|
|
28
|
+
],
|
|
29
|
+
"PreCompact": [
|
|
30
|
+
{
|
|
31
|
+
"matcher": "*",
|
|
32
|
+
"hooks": [
|
|
33
|
+
{
|
|
34
|
+
"type": "command",
|
|
35
|
+
"command": "python3 ~/.claude/hooks/pre_compact.py"
|
|
36
|
+
}
|
|
37
|
+
]
|
|
38
|
+
}
|
|
39
|
+
],
|
|
40
|
+
"PreToolUse": [
|
|
41
|
+
{
|
|
42
|
+
"matcher": "Read,Search,Grep,Bash,Edit,MultiEdit",
|
|
43
|
+
"hooks": [
|
|
44
|
+
{
|
|
45
|
+
"type": "command",
|
|
46
|
+
"command": "python3 ~/.claude/hooks/stravinsky_mode.py"
|
|
47
|
+
}
|
|
48
|
+
]
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
"matcher": "Bash",
|
|
52
|
+
"hooks": [
|
|
53
|
+
{
|
|
54
|
+
"type": "command",
|
|
55
|
+
"command": "python3 ~/.claude/hooks/comment_checker.py"
|
|
56
|
+
}
|
|
57
|
+
]
|
|
58
|
+
}
|
|
59
|
+
],
|
|
60
|
+
"UserPromptSubmit": [
|
|
61
|
+
{
|
|
62
|
+
"matcher": "*",
|
|
63
|
+
"hooks": [
|
|
64
|
+
{
|
|
65
|
+
"type": "command",
|
|
66
|
+
"command": "python3 ~/.claude/hooks/context_monitor.py"
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
"type": "command",
|
|
70
|
+
"command": "python3 ~/.claude/hooks/parallel_execution.py"
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
"type": "command",
|
|
74
|
+
"command": "python3 ~/.claude/hooks/parallel_reinforcement.py"
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
"type": "command",
|
|
78
|
+
"command": "python3 ~/.claude/hooks/parallel_reinforcement_v2.py"
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
"type": "command",
|
|
82
|
+
"command": "python3 ~/.claude/hooks/context.py"
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
"type": "command",
|
|
86
|
+
"command": "python3 ~/.claude/hooks/todo_continuation.py"
|
|
87
|
+
}
|
|
88
|
+
]
|
|
89
|
+
}
|
|
90
|
+
],
|
|
91
|
+
"PostToolUse": [
|
|
92
|
+
{
|
|
93
|
+
"matcher": "*",
|
|
94
|
+
"hooks": [
|
|
95
|
+
{
|
|
96
|
+
"type": "command",
|
|
97
|
+
"command": "python3 ~/.claude/hooks/truncator.py"
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
"type": "command",
|
|
101
|
+
"command": "python3 ~/.claude/hooks/session_recovery.py"
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
"type": "command",
|
|
105
|
+
"command": "python3 ~/.claude/hooks/execution_state_tracker.py"
|
|
106
|
+
}
|
|
107
|
+
]
|
|
108
|
+
},
|
|
109
|
+
{
|
|
110
|
+
"matcher": "mcp__stravinsky__*,mcp__grep-app__*,Task",
|
|
111
|
+
"hooks": [
|
|
112
|
+
{
|
|
113
|
+
"type": "command",
|
|
114
|
+
"command": "python3 ~/.claude/hooks/tool_messaging.py"
|
|
115
|
+
}
|
|
116
|
+
]
|
|
117
|
+
},
|
|
118
|
+
{
|
|
119
|
+
"matcher": "Edit,MultiEdit",
|
|
120
|
+
"hooks": [
|
|
121
|
+
{
|
|
122
|
+
"type": "command",
|
|
123
|
+
"command": "python3 ~/.claude/hooks/edit_recovery.py"
|
|
124
|
+
}
|
|
125
|
+
]
|
|
126
|
+
},
|
|
127
|
+
{
|
|
128
|
+
"matcher": "TodoWrite",
|
|
129
|
+
"hooks": [
|
|
130
|
+
{
|
|
131
|
+
"type": "command",
|
|
132
|
+
"command": "python3 ~/.claude/hooks/todo_delegation.py"
|
|
133
|
+
},
|
|
134
|
+
{
|
|
135
|
+
"type": "command",
|
|
136
|
+
"command": "python3 ~/.claude/hooks/dependency_tracker.py"
|
|
137
|
+
}
|
|
138
|
+
]
|
|
139
|
+
}
|
|
140
|
+
],
|
|
141
|
+
"Stop": [
|
|
142
|
+
{
|
|
143
|
+
"hooks": [
|
|
144
|
+
{
|
|
145
|
+
"type": "command",
|
|
146
|
+
"command": "python3 ~/.claude/hooks/stop_hook.py"
|
|
147
|
+
}
|
|
148
|
+
]
|
|
149
|
+
}
|
|
150
|
+
]
|
|
151
|
+
}
|
|
152
|
+
}
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Browser automation with Chrome DevTools MCP. Use for web scraping, testing, screenshots, form filling, and browser interactions. Preferred over Playwright for direct browser control.
|
|
3
|
+
mcp:
|
|
4
|
+
chrome-devtools:
|
|
5
|
+
command: npx
|
|
6
|
+
args: ["-y", "@anthropic/mcp-chrome-devtools"]
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
# Chrome DevTools Skill
|
|
10
|
+
|
|
11
|
+
Browser automation using the Chrome DevTools Protocol via MCP.
|
|
12
|
+
|
|
13
|
+
## When to Use
|
|
14
|
+
|
|
15
|
+
- Web scraping and data extraction
|
|
16
|
+
- UI testing and verification
|
|
17
|
+
- Taking screenshots of web pages
|
|
18
|
+
- Form filling and submission
|
|
19
|
+
- Browser-based automation tasks
|
|
20
|
+
- Debugging web applications
|
|
21
|
+
|
|
22
|
+
## Available Tools
|
|
23
|
+
|
|
24
|
+
### Navigation
|
|
25
|
+
- `navigate_page` - Navigate to URL, back, forward, or reload
|
|
26
|
+
- `new_page` - Create new browser tab
|
|
27
|
+
- `list_pages` - List all open pages
|
|
28
|
+
- `select_page` - Switch to a specific page
|
|
29
|
+
- `close_page` - Close a page
|
|
30
|
+
|
|
31
|
+
### Interaction
|
|
32
|
+
- `click` - Click on an element (supports double-click)
|
|
33
|
+
- `fill` - Type text into input/textarea or select option
|
|
34
|
+
- `fill_form` - Fill multiple form elements at once
|
|
35
|
+
- `hover` - Hover over an element
|
|
36
|
+
- `press_key` - Press keyboard keys or combinations
|
|
37
|
+
- `drag` - Drag element to another element
|
|
38
|
+
- `upload_file` - Upload file through file input
|
|
39
|
+
|
|
40
|
+
### Inspection
|
|
41
|
+
- `take_snapshot` - Get page content as a11y tree (preferred)
|
|
42
|
+
- `take_screenshot` - Capture page or element screenshot
|
|
43
|
+
- `list_console_messages` - Get browser console logs
|
|
44
|
+
- `get_console_message` - Get specific console message
|
|
45
|
+
- `list_network_requests` - List network activity
|
|
46
|
+
- `get_network_request` - Get request details
|
|
47
|
+
|
|
48
|
+
### Performance
|
|
49
|
+
- `performance_start_trace` - Start performance recording
|
|
50
|
+
- `performance_stop_trace` - Stop recording
|
|
51
|
+
- `performance_analyze_insight` - Analyze performance insights
|
|
52
|
+
|
|
53
|
+
### Dialogs & Emulation
|
|
54
|
+
- `handle_dialog` - Accept/dismiss browser dialogs
|
|
55
|
+
- `emulate` - Set network conditions, CPU throttling, geolocation
|
|
56
|
+
- `resize_page` - Resize browser window
|
|
57
|
+
- `wait_for` - Wait for text to appear
|
|
58
|
+
|
|
59
|
+
## Usage Pattern
|
|
60
|
+
|
|
61
|
+
1. **Start with snapshot**: Always use `take_snapshot` to get the current page state with element UIDs
|
|
62
|
+
2. **Use UIDs for interaction**: Elements in snapshot have `uid` identifiers - use these for clicks, fills, etc.
|
|
63
|
+
3. **Verify after actions**: Take another snapshot to verify state changes
|
|
64
|
+
|
|
65
|
+
## Example Workflow
|
|
66
|
+
|
|
67
|
+
```
|
|
68
|
+
1. navigate_page(url="https://example.com")
|
|
69
|
+
2. take_snapshot() -> get element UIDs
|
|
70
|
+
3. fill(uid="search-input", value="query")
|
|
71
|
+
4. click(uid="submit-button")
|
|
72
|
+
5. wait_for(text="Results")
|
|
73
|
+
6. take_snapshot() -> verify results
|
|
74
|
+
```
|
|
75
|
+
|
|
76
|
+
## Notes
|
|
77
|
+
|
|
78
|
+
- Prefer `take_snapshot` over `take_screenshot` for understanding page structure
|
|
79
|
+
- Use `wait_for` after navigation or clicks that trigger loading
|
|
80
|
+
- Console messages and network requests help debug issues
|
|
81
|
+
- Performance tracing is useful for optimization tasks
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: SQLite database operations via MCP. Use for local database queries, schema exploration, and data manipulation in SQLite files.
|
|
3
|
+
mcp:
|
|
4
|
+
sqlite:
|
|
5
|
+
command: npx
|
|
6
|
+
args: ["-y", "@anthropic/mcp-server-sqlite", "--db-path", "./data.db"]
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
# SQLite Skill
|
|
10
|
+
|
|
11
|
+
Local SQLite database operations using MCP server.
|
|
12
|
+
|
|
13
|
+
## When to Use
|
|
14
|
+
|
|
15
|
+
- Local database queries and operations
|
|
16
|
+
- Prototyping before moving to production database
|
|
17
|
+
- Data analysis on SQLite files
|
|
18
|
+
- Schema exploration and documentation
|
|
19
|
+
- Test database setup and teardown
|
|
20
|
+
|
|
21
|
+
## Configuration
|
|
22
|
+
|
|
23
|
+
Specify the database path in the args:
|
|
24
|
+
|
|
25
|
+
```yaml
|
|
26
|
+
mcp:
|
|
27
|
+
sqlite:
|
|
28
|
+
command: npx
|
|
29
|
+
args: ["-y", "@anthropic/mcp-server-sqlite", "--db-path", "./path/to/database.db"]
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
For in-memory database:
|
|
33
|
+
|
|
34
|
+
```yaml
|
|
35
|
+
mcp:
|
|
36
|
+
sqlite:
|
|
37
|
+
command: npx
|
|
38
|
+
args: ["-y", "@anthropic/mcp-server-sqlite", "--db-path", ":memory:"]
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
## Available Tools
|
|
42
|
+
|
|
43
|
+
### Query Operations
|
|
44
|
+
- `read_query` - Execute SELECT queries (safe, read-only)
|
|
45
|
+
- `write_query` - Execute INSERT/UPDATE/DELETE queries
|
|
46
|
+
- `create_table` - Create new tables with schema
|
|
47
|
+
|
|
48
|
+
### Schema Operations
|
|
49
|
+
- `list_tables` - List all tables in the database
|
|
50
|
+
- `describe_table` - Get table schema (columns, types, constraints)
|
|
51
|
+
|
|
52
|
+
### Data Operations
|
|
53
|
+
- `insert_rows` - Bulk insert data
|
|
54
|
+
- `export_query` - Export query results
|
|
55
|
+
|
|
56
|
+
## Usage Pattern
|
|
57
|
+
|
|
58
|
+
1. **List tables first**: Use `list_tables` to understand database structure
|
|
59
|
+
2. **Describe before querying**: Use `describe_table` for column names and types
|
|
60
|
+
3. **Use read_query for exploration**: Safe, cannot modify data
|
|
61
|
+
4. **Backup before writes**: Always backup important data before modifications
|
|
62
|
+
|
|
63
|
+
## Example Workflow
|
|
64
|
+
|
|
65
|
+
```
|
|
66
|
+
1. list_tables() -> see available tables
|
|
67
|
+
2. describe_table(table_name="users") -> see columns
|
|
68
|
+
3. read_query(query="SELECT * FROM users LIMIT 10") -> preview data
|
|
69
|
+
4. write_query(query="UPDATE users SET status = 'active' WHERE id = 1")
|
|
70
|
+
```
|
|
71
|
+
|
|
72
|
+
## Notes
|
|
73
|
+
|
|
74
|
+
- Database file is created if it doesn't exist
|
|
75
|
+
- In-memory databases are lost when server stops
|
|
76
|
+
- Use `--db-path` to point to existing SQLite files
|
|
77
|
+
- Supports standard SQLite syntax and functions
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Supabase database operations via MCP. Use for PostgreSQL queries, authentication, storage, and real-time subscriptions in Supabase projects.
|
|
3
|
+
mcp:
|
|
4
|
+
supabase:
|
|
5
|
+
command: npx
|
|
6
|
+
args: ["-y", "@supabase/mcp-server-supabase@latest", "--read-only"]
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
# Supabase Skill
|
|
10
|
+
|
|
11
|
+
Database and backend operations using Supabase MCP server.
|
|
12
|
+
|
|
13
|
+
## When to Use
|
|
14
|
+
|
|
15
|
+
- PostgreSQL database queries and operations
|
|
16
|
+
- User authentication and session management
|
|
17
|
+
- File storage operations
|
|
18
|
+
- Real-time subscription setup
|
|
19
|
+
- Database schema exploration
|
|
20
|
+
- Row-level security (RLS) policy management
|
|
21
|
+
|
|
22
|
+
## Configuration
|
|
23
|
+
|
|
24
|
+
The MCP server requires environment variables:
|
|
25
|
+
|
|
26
|
+
```bash
|
|
27
|
+
SUPABASE_URL=https://your-project.supabase.co
|
|
28
|
+
SUPABASE_SERVICE_ROLE_KEY=your-service-role-key
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
Or pass project reference directly:
|
|
32
|
+
|
|
33
|
+
```yaml
|
|
34
|
+
mcp:
|
|
35
|
+
supabase:
|
|
36
|
+
command: npx
|
|
37
|
+
args: ["-y", "@supabase/mcp-server-supabase@latest", "--project-ref", "your-project-ref"]
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
## Available Operations
|
|
41
|
+
|
|
42
|
+
### Database
|
|
43
|
+
- Query tables with full SQL support
|
|
44
|
+
- Insert, update, delete operations
|
|
45
|
+
- Schema introspection
|
|
46
|
+
- View and function management
|
|
47
|
+
|
|
48
|
+
### Authentication
|
|
49
|
+
- User management
|
|
50
|
+
- Session handling
|
|
51
|
+
- OAuth provider configuration
|
|
52
|
+
|
|
53
|
+
### Storage
|
|
54
|
+
- Bucket management
|
|
55
|
+
- File upload/download
|
|
56
|
+
- Signed URL generation
|
|
57
|
+
|
|
58
|
+
### Real-time
|
|
59
|
+
- Channel subscription setup
|
|
60
|
+
- Broadcast configuration
|
|
61
|
+
- Presence tracking
|
|
62
|
+
|
|
63
|
+
## Usage Pattern
|
|
64
|
+
|
|
65
|
+
1. **Explore schema first**: List tables and columns before querying
|
|
66
|
+
2. **Use parameterized queries**: Avoid SQL injection
|
|
67
|
+
3. **Check RLS policies**: Understand row-level security before operations
|
|
68
|
+
4. **Prefer --read-only**: Use read-only mode for exploration tasks
|
|
69
|
+
|
|
70
|
+
## Notes
|
|
71
|
+
|
|
72
|
+
- `--read-only` flag prevents destructive operations (recommended for exploration)
|
|
73
|
+
- Service role key bypasses RLS - use with caution
|
|
74
|
+
- For production, prefer anon key with proper RLS policies
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
{
|
|
2
|
+
"dependencies": {
|
|
3
|
+
"tier_def": {
|
|
4
|
+
"deps": [],
|
|
5
|
+
"independent": true,
|
|
6
|
+
"parallel_safe": true
|
|
7
|
+
},
|
|
8
|
+
"chain_logic": {
|
|
9
|
+
"deps": [],
|
|
10
|
+
"independent": true,
|
|
11
|
+
"parallel_safe": true
|
|
12
|
+
},
|
|
13
|
+
"config_update": {
|
|
14
|
+
"deps": [],
|
|
15
|
+
"independent": true,
|
|
16
|
+
"parallel_safe": true
|
|
17
|
+
},
|
|
18
|
+
"router_integration": {
|
|
19
|
+
"deps": [],
|
|
20
|
+
"independent": true,
|
|
21
|
+
"parallel_safe": true
|
|
22
|
+
},
|
|
23
|
+
"invoke_update": {
|
|
24
|
+
"deps": [],
|
|
25
|
+
"independent": true,
|
|
26
|
+
"parallel_safe": true
|
|
27
|
+
},
|
|
28
|
+
"verify_routing": {
|
|
29
|
+
"deps": [],
|
|
30
|
+
"independent": true,
|
|
31
|
+
"parallel_safe": true
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
}
|
|
@@ -1,88 +0,0 @@
|
|
|
1
|
-
mcp_bridge/__init__.py,sha256=my_eRKQWrGqOjGcYUQ3l4O21n-LMG22J283Pb5L90kw,23
|
|
2
|
-
mcp_bridge/notifications.py,sha256=C4qPvGD1NnAsU_ukwbiqWdo7cA6ScU0qGhjie3vPpjM,5134
|
|
3
|
-
mcp_bridge/server.py,sha256=n17tRjAMmO5rmtofmuck3q3okMe5aqk1O86ei86TH2U,31938
|
|
4
|
-
mcp_bridge/server_tools.py,sha256=J_0_qCxuMdyyl5ej6h4akK8SLa1rLcxbKOgEY0n4xlk,47232
|
|
5
|
-
mcp_bridge/update_manager.py,sha256=3bXPsE0xb1ESAZq7eqPOir6sf9uq3-IaFQy2DjtwIxo,20272
|
|
6
|
-
mcp_bridge/update_manager_pypi.py,sha256=mo1G-XFhLXljEqEpGwXoMqjeB7a4m2dz3DAGtELQVvQ,9415
|
|
7
|
-
mcp_bridge/auth/__init__.py,sha256=AGHNtKzqvZYMLQ35Qg6aOabpxBqmkR-pjXv8Iby9oMw,797
|
|
8
|
-
mcp_bridge/auth/cli.py,sha256=jaXyrzq6HwnW61g6CHHcj8bF5PJLYrYufD_jmN0jeiQ,8502
|
|
9
|
-
mcp_bridge/auth/oauth.py,sha256=gWYk3KJWbUM1J5AKVDJ_4k4zdQzwwaYJZ5J25If0r8c,12804
|
|
10
|
-
mcp_bridge/auth/openai_oauth.py,sha256=0Ks2X-NXLCBzqs3xnbj9QLZpugICOX5qB5y5vtDENOo,11522
|
|
11
|
-
mcp_bridge/auth/token_refresh.py,sha256=goWp1Wz3yWOoFuxvFMDZLjo8gLPXcajZxHpzZtSoKcQ,3760
|
|
12
|
-
mcp_bridge/auth/token_store.py,sha256=cOQfxFK9z4lvhHZsAcAbzWFcMZiM_RJjjCLQ1XLetac,9508
|
|
13
|
-
mcp_bridge/cli/__init__.py,sha256=J1cFw06fYSm3uU7cbEj3GgWuDxTn1X0cDhPi1gJq7eM,200
|
|
14
|
-
mcp_bridge/cli/install_hooks.py,sha256=cmLctih9xie1iaY8uyzO11egvEkpMa7Zc-Nyb5dITlg,36955
|
|
15
|
-
mcp_bridge/cli/session_report.py,sha256=sYUje44R4qIwxML_GCaEyJwz4jgis4sZOwTDZGQJ3MM,22198
|
|
16
|
-
mcp_bridge/config/MANIFEST_SCHEMA.md,sha256=KVODUO8n5J9DcsBP19EIflQcGW39ulMnYs3evyZIrJg,10074
|
|
17
|
-
mcp_bridge/config/README.md,sha256=HzzkpS3-iDw0mGKQ2zjFETyi4r1ot03pZ4pUXp3FZJ0,8506
|
|
18
|
-
mcp_bridge/config/__init__.py,sha256=uapHdrSWWrafVKD9CTB1J_7Dw0_RajRhoDGjy9zH21o,256
|
|
19
|
-
mcp_bridge/config/hook_config.py,sha256=Fm1AWsgQfzp8J8eBp6RmL7aXFEZrAJL6Wpn7g0d11oI,7502
|
|
20
|
-
mcp_bridge/config/hooks.py,sha256=WvWC6ZUc8y1IXPlGCjLYAAsGGigd5tWeGiw585OGNwA,4624
|
|
21
|
-
mcp_bridge/config/hooks_manifest.json,sha256=e-1_Qh15WVY1IE1r6pL67WW10LYoSmcmRYEuRNz53qw,4189
|
|
22
|
-
mcp_bridge/config/rate_limits.py,sha256=1XXvQjlhAiuYrDY9m-O6NlWhtg3_GTx99dINavzcXGU,7189
|
|
23
|
-
mcp_bridge/config/skills_manifest.json,sha256=6i5KfwqnZUAE9HCyTXoZfKA4tIXMaIZs4Kzf6Kj4bA4,3693
|
|
24
|
-
mcp_bridge/hooks/HOOKS_SETTINGS.json,sha256=IY47eGigQwTaQ0XwM2NzVopGBga3Zaocmq09I1M1inw,6434
|
|
25
|
-
mcp_bridge/hooks/README.md,sha256=ocKp2BE6U4o8OhnA4dbXoth8A9YD8MYQLi5uXw7bLEo,7549
|
|
26
|
-
mcp_bridge/hooks/__init__.py,sha256=_R8Qbz7puDeQ_LWwKLSU_GKnxdA1JyESEihM1PM5HFo,3946
|
|
27
|
-
mcp_bridge/hooks/agent_reminder.py,sha256=OxKPxi7e2MIBm44Ebzzl9j9fDV5bBgogGF0lj7wun5s,1913
|
|
28
|
-
mcp_bridge/hooks/auto_slash_command.py,sha256=LUndZHxUzEF7PQuOdp3v7VfqNUgsiDE2gzI_TkR9he4,5280
|
|
29
|
-
mcp_bridge/hooks/budget_optimizer.py,sha256=Im0qSGVUdRByk04hP5VyKt7tjlDVYG0LJb6IeUjjnj8,1323
|
|
30
|
-
mcp_bridge/hooks/comment_checker.py,sha256=MslXZYiHjfxjUU7VzmZfa1n2WR9o4lnaktJ6eUPBUDs,3772
|
|
31
|
-
mcp_bridge/hooks/compaction.py,sha256=UXTwmyo9C4Jm3j72KvVU11ukSAHaGaTey_h3L43e3rY,1186
|
|
32
|
-
mcp_bridge/hooks/context.py,sha256=JBHqnX75qtMO3JAEFooBEAK6DxcsVaXykhrP7tdFm6E,949
|
|
33
|
-
mcp_bridge/hooks/context_monitor.py,sha256=IEr75e_gqbPEUslxxfkwftiy6alDmJxQhSB6cy8BVg4,1885
|
|
34
|
-
mcp_bridge/hooks/directory_context.py,sha256=0VjdJITJIGUqR4-q-wZlB6kmkFQMraaFvU2Nz2PnJCM,1225
|
|
35
|
-
mcp_bridge/hooks/edit_recovery.py,sha256=1OWpb3v87txFUsgnNe1hoeTI7rIKCkKYONld5BK1TyA,1503
|
|
36
|
-
mcp_bridge/hooks/empty_message_sanitizer.py,sha256=iZZnETju1wBvJXV1k4msV8FxLNg5LkVm2eaFA2nQWxI,6606
|
|
37
|
-
mcp_bridge/hooks/git_noninteractive.py,sha256=1VETo7Gf76NYEx_J7RxA52wYnlj5wiOwFL9lSMdshEM,2864
|
|
38
|
-
mcp_bridge/hooks/keyword_detector.py,sha256=w7wW8dYYKiHpmgMYJtWw2MJd0ly631C7rFVWtC_kkq8,6105
|
|
39
|
-
mcp_bridge/hooks/manager.py,sha256=cWgHbaW2qD-Gl0Xxbl-2o6ffn3R2U6X0E5ezZDxH4A0,5994
|
|
40
|
-
mcp_bridge/hooks/notification_hook.py,sha256=GElHxaIn0BF935IXuRQjYERk7W_msBiCm0UwutumdiM,2770
|
|
41
|
-
mcp_bridge/hooks/parallel_enforcer.py,sha256=qzPB7PX22Laz6yC3MCbAmYBhP59P9ac6WHpgXOABOuQ,3651
|
|
42
|
-
mcp_bridge/hooks/parallel_execution.py,sha256=nIINPRm-1P1dci3lTCacJKN_4NIkm9IyTrVx-rmbXl4,3602
|
|
43
|
-
mcp_bridge/hooks/pre_compact.py,sha256=QXcCO9kByn8Ta27NWoQP8IPPUa379KO4qb1BBLzfzuU,3398
|
|
44
|
-
mcp_bridge/hooks/preemptive_compaction.py,sha256=x4-dLWCconVFD-nR93P1EB_tG9n4LHdESq7uDFS3ut8,7937
|
|
45
|
-
mcp_bridge/hooks/rules_injector.py,sha256=jZN9_b464ATEKAFJvIlIVKT-UvcoNAuZGDI4TmJ0Uxc,16485
|
|
46
|
-
mcp_bridge/hooks/session_idle.py,sha256=5wo6XakXglWVCP-HN1i976OptfntwCNnbjxoM--veh4,3525
|
|
47
|
-
mcp_bridge/hooks/session_notifier.py,sha256=dkrSwRquMbcCRuUCsBVqUY6cHSGDO2UuPWKTNf6Y7fc,3750
|
|
48
|
-
mcp_bridge/hooks/session_recovery.py,sha256=c5eoIWJAgMTPY0wq_64MmCUNLCB_GSowZlA3lo4R9LU,6260
|
|
49
|
-
mcp_bridge/hooks/stravinsky_mode.py,sha256=ru9vg5m1QjhK0ABwopC68S2Gzy2-sEW1b1AbveFO57o,4066
|
|
50
|
-
mcp_bridge/hooks/subagent_stop.py,sha256=GUPY3FNVAtsc6J4PbddSRK9XuDs-gw2CaFoGXt5gsME,2865
|
|
51
|
-
mcp_bridge/hooks/task_validator.py,sha256=YSeUWbtwjA-oWCrOVS5DTRxu9_0VTgzpF2mf-QIIw9E,2183
|
|
52
|
-
mcp_bridge/hooks/tmux_manager.py,sha256=vXU0o612PrJ8Xb0IMq4qnEY3i_Z1sT_E-56SqalmrQA,4125
|
|
53
|
-
mcp_bridge/hooks/todo_continuation.py,sha256=tmhTVfMZMDuDw4cwyuU7r_TkUqmtAx55u0WNTawgMyo,2652
|
|
54
|
-
mcp_bridge/hooks/todo_delegation.py,sha256=tOAE1RYAPSH8UOeO8Vsk7sdLf9H4GmXE2lbc_GGjlYI,2676
|
|
55
|
-
mcp_bridge/hooks/todo_enforcer.py,sha256=LRvVxYILqQ6YuQl3tky4hgyD-irXIPDE5e0EdKr6jcc,2274
|
|
56
|
-
mcp_bridge/hooks/tool_messaging.py,sha256=LBwv52NklmNtYbNl_72kik2H1zdvZssYIVUFCUWJK9g,9687
|
|
57
|
-
mcp_bridge/hooks/truncator.py,sha256=h3hb8sZXTvc59C0-5GdZwCVZHlxBKdo47JT9TMxHG3g,530
|
|
58
|
-
mcp_bridge/prompts/__init__.py,sha256=wzveum1x50IXGkE0JFpvHAj8P0yqnSrgtrmyIIpnnBI,358
|
|
59
|
-
mcp_bridge/prompts/delphi.py,sha256=ZlnLY2o1PrK3CxLLaCkozAGPIAJ5OFmw5u8o6-LXmgI,4960
|
|
60
|
-
mcp_bridge/prompts/dewey.py,sha256=u5OaOj8kinZERflWvUv4M4WVAwxw0kJrNT00wHksIHI,9264
|
|
61
|
-
mcp_bridge/prompts/document_writer.py,sha256=hiCbxgTU8HKPJkS0eNpPPtzSqDXPreApU2OqiS6zh-0,5618
|
|
62
|
-
mcp_bridge/prompts/explore.py,sha256=oZxh4fe4KNGa_ozakJSpLYeQVfO4-jQ2M1BSOw1Sw10,5801
|
|
63
|
-
mcp_bridge/prompts/frontend.py,sha256=j91I8k5vcVed13eeX-Ebiv49x9Qj4HO_SQN1xhB8TLQ,4943
|
|
64
|
-
mcp_bridge/prompts/multimodal.py,sha256=Q_rutR7r5iBcLViVfdLxoukCQe2OA0lDJhxkoo0OSMw,2692
|
|
65
|
-
mcp_bridge/prompts/planner.py,sha256=wcdXIxPlZM0UYd9KQSKXnuXTRj2acSnqlqeQ_NxxEqw,6985
|
|
66
|
-
mcp_bridge/prompts/stravinsky.py,sha256=gJgzMgsa6u0fLbFWOkPY2lq78-yJTuD46wrnk-5rem0,27498
|
|
67
|
-
mcp_bridge/tools/__init__.py,sha256=1Ks_gdsnN7BhKE8738pBAsI1VH66Kkj9bE71Xo68GvI,1301
|
|
68
|
-
mcp_bridge/tools/agent_manager.py,sha256=EHcmLD5-0wsDuRSpWx9-SKIZKdvJULNxa_qr4_GvPmQ,38506
|
|
69
|
-
mcp_bridge/tools/background_tasks.py,sha256=bwbVYWCDzuXb3Q_OdIr10r76lgjFTphfjdTmOHYZI7w,5252
|
|
70
|
-
mcp_bridge/tools/code_search.py,sha256=xawUBapNSCp1lL_LESsiiVU6fno1iFeSji2Ke5WAO6M,13170
|
|
71
|
-
mcp_bridge/tools/continuous_loop.py,sha256=MM3FnF3ULuR32h0tqJP8uF48iJg6R9dbyHy_36KLOls,2100
|
|
72
|
-
mcp_bridge/tools/init.py,sha256=sU95M9M_tjsfuew389TrFrxxeCavuSC16qbkydk_6PU,1586
|
|
73
|
-
mcp_bridge/tools/model_invoke.py,sha256=WoiTKAkUDe-mlQs3ArWNgMy1DBx2MTXtKdrV4LawYsM,37384
|
|
74
|
-
mcp_bridge/tools/project_context.py,sha256=bXKxuW1pGjtIbeNjMgpBoQL-d_CI94UPBVpRjUyhX20,4707
|
|
75
|
-
mcp_bridge/tools/query_classifier.py,sha256=Jj8AoDEkur5eE5N6Szlh9tUX3rkdReqGCAL4-lEtTY4,12324
|
|
76
|
-
mcp_bridge/tools/semantic_search.py,sha256=UBvW3mYHxp03IxzZ4X0D051-3kkggKxgka_fHLlb5c4,106839
|
|
77
|
-
mcp_bridge/tools/session_manager.py,sha256=tCVLLvO-Kttla7OxPImb_NSGL_9aW46ilq5ej_IcnlA,9252
|
|
78
|
-
mcp_bridge/tools/skill_loader.py,sha256=RQ5eC357pm-6q85G3EyrQugz0S3OO5lxWtM9n9ECF-c,6010
|
|
79
|
-
mcp_bridge/tools/task_runner.py,sha256=xjE3MXv62gcUCwOEwHjAGL_Ud_ZlKFBN0UHpvFjj3uk,3918
|
|
80
|
-
mcp_bridge/tools/templates.py,sha256=ANsSXGFKvc7NR58jbmR7SejlbBQucqXZi4DYagYz3CQ,7008
|
|
81
|
-
mcp_bridge/tools/lsp/__init__.py,sha256=v-2OENfPrZxglAwpbooH3rFjcZDmhAMXEFZhygwq3II,753
|
|
82
|
-
mcp_bridge/tools/lsp/manager.py,sha256=DR0XDDL0ElKsf8I3iqJIXhV4oX25Kh2QoPLGGtpgM7o,16272
|
|
83
|
-
mcp_bridge/tools/lsp/tools.py,sha256=DANgPzp52vPomBAEnwOU9YZiNowz9yWQZGLQZ1wXTeY,34521
|
|
84
|
-
mcp_bridge/utils/__init__.py,sha256=pbHV4nq5SLUYcAyTmLUZYrp293Ctud57X8hwsMGA_BM,20
|
|
85
|
-
stravinsky-0.4.18.dist-info/METADATA,sha256=6cnhEnVZ6b_FIEFUsuPUVi_Vpkiol3m6uEf71LTxycU,22008
|
|
86
|
-
stravinsky-0.4.18.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
87
|
-
stravinsky-0.4.18.dist-info/entry_points.txt,sha256=MB1dqHW9dx-ae0-cDi6fYEY9HtyzbyB5VhJxza0wDDc,215
|
|
88
|
-
stravinsky-0.4.18.dist-info/RECORD,,
|
|
File without changes
|