@hailer/mcp 0.1.11 → 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.
Files changed (62) hide show
  1. package/.claude/settings.json +12 -0
  2. package/CLAUDE.md +37 -1
  3. package/ai-hub/dist/assets/index-8ce6041d.css +1 -0
  4. package/ai-hub/dist/assets/index-930f01ca.js +348 -0
  5. package/ai-hub/dist/index.html +15 -0
  6. package/ai-hub/dist/manifest.json +14 -0
  7. package/ai-hub/dist/vite.svg +1 -0
  8. package/dist/app.js +5 -0
  9. package/dist/client/agents/base.d.ts +5 -0
  10. package/dist/client/agents/base.js +9 -2
  11. package/dist/client/agents/definitions.js +85 -0
  12. package/dist/client/agents/orchestrator.d.ts +21 -0
  13. package/dist/client/agents/orchestrator.js +292 -1
  14. package/dist/client/bot-entrypoint.d.ts +7 -0
  15. package/dist/client/bot-entrypoint.js +103 -0
  16. package/dist/client/bot-runner.d.ts +35 -0
  17. package/dist/client/bot-runner.js +188 -0
  18. package/dist/client/factory.d.ts +4 -0
  19. package/dist/client/factory.js +10 -0
  20. package/dist/client/server.d.ts +8 -0
  21. package/dist/client/server.js +251 -0
  22. package/dist/client/types.d.ts +29 -0
  23. package/dist/client/types.js +4 -1
  24. package/dist/core.d.ts +3 -0
  25. package/dist/core.js +72 -0
  26. package/dist/mcp/hailer-clients.d.ts +4 -0
  27. package/dist/mcp/hailer-clients.js +16 -1
  28. package/dist/mcp/tools/app-scaffold.js +127 -5
  29. package/dist/mcp/tools/bot-config.d.ts +78 -0
  30. package/dist/mcp/tools/bot-config.js +442 -0
  31. package/dist/mcp-server.js +109 -1
  32. package/dist/modules/bug-reports/bug-config.d.ts +25 -0
  33. package/dist/modules/bug-reports/bug-config.js +187 -0
  34. package/dist/modules/bug-reports/bug-monitor.d.ts +108 -0
  35. package/dist/modules/bug-reports/bug-monitor.js +510 -0
  36. package/dist/modules/bug-reports/giuseppe-ai.d.ts +59 -0
  37. package/dist/modules/bug-reports/giuseppe-ai.js +335 -0
  38. package/dist/modules/bug-reports/giuseppe-bot.d.ts +109 -0
  39. package/dist/modules/bug-reports/giuseppe-bot.js +765 -0
  40. package/dist/modules/bug-reports/giuseppe-files.d.ts +52 -0
  41. package/dist/modules/bug-reports/giuseppe-files.js +338 -0
  42. package/dist/modules/bug-reports/giuseppe-git.d.ts +48 -0
  43. package/dist/modules/bug-reports/giuseppe-git.js +298 -0
  44. package/dist/modules/bug-reports/giuseppe-prompt.d.ts +5 -0
  45. package/dist/modules/bug-reports/giuseppe-prompt.js +94 -0
  46. package/dist/modules/bug-reports/index.d.ts +76 -0
  47. package/dist/modules/bug-reports/index.js +213 -0
  48. package/dist/modules/bug-reports/pending-classification-registry.d.ts +28 -0
  49. package/dist/modules/bug-reports/pending-classification-registry.js +50 -0
  50. package/dist/modules/bug-reports/pending-fix-registry.d.ts +30 -0
  51. package/dist/modules/bug-reports/pending-fix-registry.js +42 -0
  52. package/dist/modules/bug-reports/pending-registry.d.ts +27 -0
  53. package/dist/modules/bug-reports/pending-registry.js +49 -0
  54. package/dist/modules/bug-reports/types.d.ts +123 -0
  55. package/dist/modules/bug-reports/types.js +9 -0
  56. package/dist/services/bug-monitor.d.ts +23 -0
  57. package/dist/services/bug-monitor.js +275 -0
  58. package/lineup-manager/dist/assets/index-b30c809f.js +600 -0
  59. package/lineup-manager/dist/index.html +1 -1
  60. package/lineup-manager/dist/manifest.json +5 -5
  61. package/package.json +6 -2
  62. package/lineup-manager/dist/assets/index-e168f265.js +0 -600
@@ -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}