@hailer/mcp 1.1.17-beta.1 → 1.1.17-beta.2

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.
@@ -1,5 +1,12 @@
1
1
  {
2
2
  "$schema": "https://opencode.ai/config.json",
3
+ "mcp": {
4
+ "hailer": {
5
+ "type": "local",
6
+ "command": ["npx", "mcp-remote", "http://localhost:3030/api/mcp?apiKey=unique-api-key-for-this-agent"],
7
+ "enabled": true
8
+ }
9
+ },
3
10
  "permission": {
4
11
  "bash": {
5
12
  "*": "ask",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hailer/mcp",
3
- "version": "1.1.17-beta.1",
3
+ "version": "1.1.17-beta.2",
4
4
  "config": {
5
5
  "docker": {
6
6
  "registry": "registry.gitlab.com/hailer-repos/hailer-mcp"
@@ -62,3 +62,12 @@ if (!fs.existsSync(src)) {
62
62
 
63
63
  copyDir(src, dest);
64
64
  console.log(`@hailer/mcp: agents installed to ${dest}`);
65
+
66
+ // Copy .opencode/ config
67
+ const opencodeSrc = path.join(__dirname, '..', '.opencode');
68
+ const opencodeDest = path.join(projectRoot, '.opencode');
69
+
70
+ if (fs.existsSync(opencodeSrc)) {
71
+ copyDir(opencodeSrc, opencodeDest);
72
+ console.log(`@hailer/mcp: OpenCode config installed to ${opencodeDest}`);
73
+ }