compound-workflow 1.6.16 → 1.6.17

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,6 +1,6 @@
1
1
  {
2
2
  "name": "compound-workflow",
3
- "version": "1.6.16",
3
+ "version": "1.6.17",
4
4
  "description": "Clarify -> plan -> execute -> verify -> capture workflow: commands, skills, and agents for Claude Code",
5
5
  "author": {
6
6
  "name": "Compound Workflow"
@@ -16,6 +16,8 @@
16
16
  "license": "MIT",
17
17
  "repository": "https://github.com/cjerochim/compound-workflow",
18
18
  "commands": "./src/.agents/commands",
19
- "agents": "./src/.agents/agents",
19
+ "agents": [
20
+ "./src/.agents/agents"
21
+ ],
20
22
  "skills": "./src/.agents/skills"
21
23
  }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "compound-workflow",
3
- "version": "1.6.16",
3
+ "version": "1.6.17",
4
4
  "description": "Clarify -> plan -> execute -> verify -> capture workflow for Cursor",
5
5
  "author": {
6
6
  "name": "Compound Workflow"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "compound-workflow",
3
- "version": "1.6.16",
3
+ "version": "1.6.17",
4
4
  "description": "Clarify → plan → execute → verify → capture. One Install action for Cursor, Claude, and OpenCode.",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -161,7 +161,7 @@ function main() {
161
161
  license: pkg.license,
162
162
  repository: repositoryUrl,
163
163
  commands: "./src/.agents/commands",
164
- agents: "./src/.agents/agents",
164
+ agents: ["./src/.agents/agents"],
165
165
  skills: "./src/.agents/skills",
166
166
  };
167
167
 
@@ -347,7 +347,8 @@ function writePluginManifests(targetRoot, dryRun, isSelfInstall) {
347
347
  if (!cursorManifest || !claudeManifest) return;
348
348
 
349
349
  const cursorOut = { ...cursorManifest, ...pathOverrides };
350
- const claudeOut = { ...claudeManifest, ...pathOverrides };
350
+ // Claude Code validator requires agents as array; Cursor uses string (unchanged).
351
+ const claudeOut = { ...claudeManifest, ...pathOverrides, agents: [`${pathsBase}/agents`] };
351
352
  const cursorDir = path.join(targetRoot, ".cursor-plugin");
352
353
  const claudeDir = path.join(targetRoot, ".claude-plugin");
353
354