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.
|
|
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":
|
|
19
|
+
"agents": [
|
|
20
|
+
"./src/.agents/agents"
|
|
21
|
+
],
|
|
20
22
|
"skills": "./src/.agents/skills"
|
|
21
23
|
}
|
package/package.json
CHANGED
package/scripts/install-cli.mjs
CHANGED
|
@@ -347,7 +347,8 @@ function writePluginManifests(targetRoot, dryRun, isSelfInstall) {
|
|
|
347
347
|
if (!cursorManifest || !claudeManifest) return;
|
|
348
348
|
|
|
349
349
|
const cursorOut = { ...cursorManifest, ...pathOverrides };
|
|
350
|
-
|
|
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
|
|