@ghl-ai/aw 0.1.35-beta.20 → 0.1.35-beta.21
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/integrate.mjs +5 -3
- package/link.mjs +1 -1
- package/package.json +1 -1
package/integrate.mjs
CHANGED
|
@@ -100,7 +100,9 @@ Team: ${team} | Local-first orchestration via \`.aw_docs/\` | MCPs: \`memory/*\`
|
|
|
100
100
|
|
|
101
101
|
> **Every non-trivial task MUST call \`Skill(skill: "platform-ai-task-router")\` BEFORE any response.**
|
|
102
102
|
>
|
|
103
|
-
> **
|
|
103
|
+
> **Exempt from routing (execute directly):**
|
|
104
|
+
> - **Plugin commands**: any \`/aw:*\` slash command — these have their own agent dispatch via the plugin system. Execute the plugin command as-is, do NOT re-route through the task router.
|
|
105
|
+
> - **Trivial tasks**: typo fixes, single-line edits, git ops, file exploration, factual code questions.
|
|
104
106
|
>
|
|
105
107
|
> Everything else — including tasks phrased as questions, suggestions, or discussions — routes first.
|
|
106
108
|
> **No conversational responses first. No planning first. Route first.**
|
|
@@ -136,7 +138,7 @@ Team: ${team} | Local-first orchestration via \`.aw_docs/\` | MCPs: \`memory/*\`
|
|
|
136
138
|
└── tasks/BOARD.md # Task board
|
|
137
139
|
\`\`\`
|
|
138
140
|
|
|
139
|
-
Symlinked to \`.claude/{agents,skills,commands/
|
|
141
|
+
Symlinked to \`.claude/{agents,skills,commands/aw,evals}\`.
|
|
140
142
|
|
|
141
143
|
## Local-First Operations
|
|
142
144
|
|
|
@@ -172,7 +174,7 @@ stitch/* → External design generation
|
|
|
172
174
|
All symlinks are prefixed with their namespace (\`platform-\` or \`${team}-\`):
|
|
173
175
|
- \`.aw_registry/platform/review/agents/security-reviewer.md\` → \`.claude/agents/platform-review-security-reviewer.md\`
|
|
174
176
|
- \`.aw_registry/${team}/frontend/agents/frontend-developer.md\` → \`.claude/agents/${team}-frontend-developer.md\`
|
|
175
|
-
- \`.aw_registry/${team}/commands/ship.md\` → \`.claude/commands/
|
|
177
|
+
- \`.aw_registry/${team}/commands/ship.md\` → \`.claude/commands/aw/${team}-ship.md\`
|
|
176
178
|
|
|
177
179
|
## Dependency Rule
|
|
178
180
|
|
package/link.mjs
CHANGED
|
@@ -217,7 +217,7 @@ export function linkWorkspace(cwd) {
|
|
|
217
217
|
const cmdFileName = [ns, ...segments, file].join('-');
|
|
218
218
|
|
|
219
219
|
for (const ide of IDE_DIRS) {
|
|
220
|
-
const linkDir = join(cwd, ide, 'commands', '
|
|
220
|
+
const linkDir = join(cwd, ide, 'commands', 'aw');
|
|
221
221
|
mkdirSync(linkDir, { recursive: true });
|
|
222
222
|
const linkPath = join(linkDir, cmdFileName);
|
|
223
223
|
const targetPath = join(commandsDir, file);
|