compound-workflow 1.7.1 → 1.7.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.
package/package.json
CHANGED
package/scripts/install-cli.mjs
CHANGED
|
@@ -343,10 +343,12 @@ function writePluginManifests(targetRoot, dryRun, isSelfInstall) {
|
|
|
343
343
|
if (!cursorManifest || !claudeManifest) return;
|
|
344
344
|
|
|
345
345
|
// Cursor supports full manifest with commands/agents/skills path overrides.
|
|
346
|
+
// For commands/agents, use .cursor/ directories where symlinks are created
|
|
347
|
+
// so Cursor can discover them properly. Skills still use source path.
|
|
346
348
|
const cursorOut = {
|
|
347
349
|
...cursorManifest,
|
|
348
|
-
commands:
|
|
349
|
-
agents:
|
|
350
|
+
commands: "./.cursor/commands",
|
|
351
|
+
agents: "./.cursor/agents",
|
|
350
352
|
skills: `${pathsBase}/skills`,
|
|
351
353
|
};
|
|
352
354
|
// Claude Code only accepts name, description, author in plugin.json.
|
|
@@ -6,7 +6,7 @@ argument-hint: "[PR number, branch name, or 'current' for current branch]"
|
|
|
6
6
|
|
|
7
7
|
# Browser Test Command
|
|
8
8
|
|
|
9
|
-
|
|
9
|
+
Run end-to-end browser tests on pages affected by a PR or branch changes using agent-browser CLI.
|
|
10
10
|
|
|
11
11
|
## CRITICAL: Use agent-browser CLI Only
|
|
12
12
|
|
|
@@ -7,8 +7,9 @@ argument-hint: "[feature idea or problem to explore]"
|
|
|
7
7
|
|
|
8
8
|
# Brainstorm a Feature or Improvement
|
|
9
9
|
|
|
10
|
-
|
|
11
|
-
|
|
10
|
+
Explore requirements and approaches through collaborative dialogue before planning implementation.
|
|
11
|
+
|
|
12
|
+
**Note: The current year is 2026.** Use this when dating brainstorm documents.
|
|
12
13
|
|
|
13
14
|
Brainstorming helps answer **WHAT** to build through collaborative
|
|
14
15
|
dialogue. It precedes `/workflow:plan`, which answers **HOW** to build
|
|
@@ -7,6 +7,8 @@ argument-hint: "[feature description, bug report, improvement idea, or brainstor
|
|
|
7
7
|
|
|
8
8
|
# Create a plan for a new feature or bug fix
|
|
9
9
|
|
|
10
|
+
Transform feature descriptions into well-structured project plans using an explicit fidelity and confidence model.
|
|
11
|
+
|
|
10
12
|
## Introduction
|
|
11
13
|
|
|
12
14
|
**Note: The current year is 2026.** Use this when dating plans and searching for recent documentation.
|