@zeph-to/hook-sdk 1.1.0 → 1.1.1

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/README.md CHANGED
@@ -157,6 +157,20 @@ try {
157
157
  }
158
158
  ```
159
159
 
160
+ ## Supported Agents
161
+
162
+ `zeph install` detects and configures these agents automatically:
163
+
164
+ | Agent | What gets installed |
165
+ |-------|-------------------|
166
+ | Claude Code | Plugin (hooks + MCP server) |
167
+ | Cursor | MCP server + stop hook + rules |
168
+ | Windsurf | MCP server + response hook |
169
+ | Gemini CLI | MCP server + AfterAgent hook |
170
+ | Codex CLI | Stop hook |
171
+ | Copilot CLI | Session end hook |
172
+ | Cline | Rules file |
173
+
160
174
  ## Requirements
161
175
 
162
176
  - Node.js >= 18 (uses native `fetch`)
package/dist/installer.js CHANGED
@@ -71,13 +71,13 @@ const injectMcpJson = (filePath) => {
71
71
  };
72
72
  const installClaude = () => {
73
73
  try {
74
- (0, child_process_1.execSync)('claude plugin marketplace add zeph-to/agent-plugin', { stdio: 'pipe' });
74
+ (0, child_process_1.execSync)('claude plugin marketplace add zeph-to/plugin', { stdio: 'pipe' });
75
75
  (0, child_process_1.execSync)('claude plugin install zeph@zeph', { stdio: 'pipe' });
76
76
  ok('Plugin installed');
77
77
  }
78
78
  catch {
79
79
  fail('Plugin install failed. Manual:');
80
- console.log(' claude plugin marketplace add zeph-to/agent-plugin');
80
+ console.log(' claude plugin marketplace add zeph-to/plugin');
81
81
  console.log(' claude plugin install zeph@zeph');
82
82
  }
83
83
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zeph-to/hook-sdk",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "description": "Zeph push notification SDK + CLI — zero dependencies",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",