@hailer/mcp 0.1.10 → 0.1.12
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.
- package/.claude/settings.json +12 -0
- package/CLAUDE.md +37 -1
- package/ai-hub/dist/assets/index-8ce6041d.css +1 -0
- package/ai-hub/dist/assets/index-930f01ca.js +348 -0
- package/ai-hub/dist/index.html +15 -0
- package/ai-hub/dist/manifest.json +14 -0
- package/ai-hub/dist/vite.svg +1 -0
- package/dist/app.js +5 -0
- package/dist/client/agents/base.d.ts +5 -0
- package/dist/client/agents/base.js +9 -2
- package/dist/client/agents/definitions.js +85 -0
- package/dist/client/agents/orchestrator.d.ts +21 -0
- package/dist/client/agents/orchestrator.js +292 -1
- package/dist/client/bot-entrypoint.d.ts +7 -0
- package/dist/client/bot-entrypoint.js +103 -0
- package/dist/client/bot-runner.d.ts +35 -0
- package/dist/client/bot-runner.js +188 -0
- package/dist/client/factory.d.ts +4 -0
- package/dist/client/factory.js +10 -0
- package/dist/client/server.d.ts +8 -0
- package/dist/client/server.js +251 -0
- package/dist/client/types.d.ts +29 -0
- package/dist/client/types.js +4 -1
- package/dist/core.d.ts +3 -0
- package/dist/core.js +72 -0
- package/dist/mcp/hailer-clients.d.ts +4 -0
- package/dist/mcp/hailer-clients.js +16 -1
- package/dist/mcp/tools/app-scaffold.js +148 -11
- package/dist/mcp/tools/bot-config.d.ts +78 -0
- package/dist/mcp/tools/bot-config.js +442 -0
- package/dist/mcp-server.js +109 -1
- package/dist/modules/bug-reports/bug-config.d.ts +25 -0
- package/dist/modules/bug-reports/bug-config.js +187 -0
- package/dist/modules/bug-reports/bug-monitor.d.ts +108 -0
- package/dist/modules/bug-reports/bug-monitor.js +510 -0
- package/dist/modules/bug-reports/giuseppe-ai.d.ts +59 -0
- package/dist/modules/bug-reports/giuseppe-ai.js +335 -0
- package/dist/modules/bug-reports/giuseppe-bot.d.ts +109 -0
- package/dist/modules/bug-reports/giuseppe-bot.js +765 -0
- package/dist/modules/bug-reports/giuseppe-files.d.ts +52 -0
- package/dist/modules/bug-reports/giuseppe-files.js +338 -0
- package/dist/modules/bug-reports/giuseppe-git.d.ts +48 -0
- package/dist/modules/bug-reports/giuseppe-git.js +298 -0
- package/dist/modules/bug-reports/giuseppe-prompt.d.ts +5 -0
- package/dist/modules/bug-reports/giuseppe-prompt.js +94 -0
- package/dist/modules/bug-reports/index.d.ts +76 -0
- package/dist/modules/bug-reports/index.js +213 -0
- package/dist/modules/bug-reports/pending-classification-registry.d.ts +28 -0
- package/dist/modules/bug-reports/pending-classification-registry.js +50 -0
- package/dist/modules/bug-reports/pending-fix-registry.d.ts +30 -0
- package/dist/modules/bug-reports/pending-fix-registry.js +42 -0
- package/dist/modules/bug-reports/pending-registry.d.ts +27 -0
- package/dist/modules/bug-reports/pending-registry.js +49 -0
- package/dist/modules/bug-reports/types.d.ts +123 -0
- package/dist/modules/bug-reports/types.js +9 -0
- package/dist/services/bug-monitor.d.ts +23 -0
- package/dist/services/bug-monitor.js +275 -0
- package/lineup-manager/dist/assets/index-b30c809f.js +600 -0
- package/lineup-manager/dist/index.html +1 -1
- package/lineup-manager/dist/manifest.json +5 -5
- package/package.json +6 -2
- package/lineup-manager/dist/assets/index-e168f265.js +0 -600
package/.claude/settings.json
CHANGED
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
{
|
|
2
|
+
"env": {
|
|
3
|
+
"ENABLE_LSP_TOOL": "1"
|
|
4
|
+
},
|
|
2
5
|
"permissions": {
|
|
3
6
|
"deny": [
|
|
4
7
|
"Read(./.env.local)",
|
|
@@ -114,5 +117,14 @@
|
|
|
114
117
|
]
|
|
115
118
|
}
|
|
116
119
|
]
|
|
120
|
+
},
|
|
121
|
+
"enabledPlugins": {},
|
|
122
|
+
"extraKnownMarketplaces": {
|
|
123
|
+
"hailer-mcp-marketplace": {
|
|
124
|
+
"source": {
|
|
125
|
+
"source": "git",
|
|
126
|
+
"url": "git@gitlab.com:hailer-repos/hailer-mcp-marketplace.git"
|
|
127
|
+
}
|
|
128
|
+
}
|
|
117
129
|
}
|
|
118
130
|
}
|
package/CLAUDE.md
CHANGED
|
@@ -110,6 +110,35 @@ PROTECTED (hooks confirm): npm run push, *-push, *-sync
|
|
|
110
110
|
SAFE: npm run pull, npm run generate
|
|
111
111
|
</safety>
|
|
112
112
|
|
|
113
|
+
<lsp>
|
|
114
|
+
**LSP Tool** - Code intelligence for TypeScript/JavaScript.
|
|
115
|
+
|
|
116
|
+
**Operations:**
|
|
117
|
+
- `goToDefinition` - Jump to where symbol is defined
|
|
118
|
+
- `findReferences` - Find all usages of a symbol
|
|
119
|
+
- `hover` - Get type info and documentation
|
|
120
|
+
- `documentSymbol` - List all symbols in a file
|
|
121
|
+
|
|
122
|
+
**Usage:**
|
|
123
|
+
```
|
|
124
|
+
LSP(operation="findReferences", filePath="src/file.ts", line=42, character=10)
|
|
125
|
+
```
|
|
126
|
+
|
|
127
|
+
**ALWAYS use LSP instead of grep/echo for TS/JS code:**
|
|
128
|
+
- Finding definitions → `goToDefinition` (not grep)
|
|
129
|
+
- Finding usages → `findReferences` (not grep)
|
|
130
|
+
- Understanding structure → `documentSymbol` (not grep)
|
|
131
|
+
- Type info → `hover` (not grep)
|
|
132
|
+
|
|
133
|
+
**Only use grep for:** Non-code files (JSON, MD, config)
|
|
134
|
+
|
|
135
|
+
**Setup (for new users):**
|
|
136
|
+
1. Install plugin: `/plugin install typescript-lsp@hailer-mcp-marketplace`
|
|
137
|
+
2. Restart: `claude -c`
|
|
138
|
+
|
|
139
|
+
**Note:** `ENABLE_LSP_TOOL` is auto-set via `.claude/settings.json`.
|
|
140
|
+
</lsp>
|
|
141
|
+
|
|
113
142
|
---
|
|
114
143
|
|
|
115
144
|
<agent-structure>
|
|
@@ -164,6 +193,13 @@ Community agents are shared via the Hailer Agent Marketplace (separate git repo)
|
|
|
164
193
|
No marketplace agents installed.
|
|
165
194
|
|
|
166
195
|
|
|
196
|
+
|
|
197
|
+
|
|
198
|
+
|
|
199
|
+
|
|
200
|
+
|
|
201
|
+
|
|
202
|
+
|
|
167
203
|
**Use plugin agents:**
|
|
168
204
|
```
|
|
169
205
|
Task(subagent_type="plugin:agent-name", prompt="...", model="haiku|sonnet")
|
|
@@ -185,7 +221,7 @@ When user asks to install plugins or set up the marketplace:
|
|
|
185
221
|
|
|
186
222
|
2. Tell user: "Restart Claude Code to load the plugin. Use `claude -c` to keep your conversation context."
|
|
187
223
|
|
|
188
|
-
Available plugins: `permissions-handler`, `voice-notifications`
|
|
224
|
+
Available plugins: `permissions-handler`, `voice-notifications`, `typescript-lsp`
|
|
189
225
|
|
|
190
226
|
After restart, sync hook updates this file automatically with installed agents.
|
|
191
227
|
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import"https://fonts.googleapis.com/css?family=Nunito+Sans:200,400,400i,600,700,800";:root[data-theme=light]{--chakra-colors-chakra-body-bg: var(--chakra-colors-white) !important}body{margin:0;min-width:320px;min-height:100vh}
|