Skip to content

Commit dfb6c34

Browse files
fix(skills): strip leaked XML tags from skill tails; clarify lint:check has no per-file target
Removes stray </content>/</invoke> markup that leaked into add-block, add-connector, add-hosted-key canonical skills, and reword the cleanup skill's lint step to note bun run lint:check runs repo-wide via turbo (no per-path API). Projections regenerated via skills:sync. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01QjefwescJoHZ6zcc3C17FR
1 parent 722d287 commit dfb6c34

12 files changed

Lines changed: 3 additions & 15 deletions

File tree

.agents/skills/add-block/SKILL.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -889,4 +889,3 @@ After creating the block, you MUST validate it against every tool it references:
889889
3. **Verify block outputs** cover the key fields returned by all tools
890890
4. **Verify conditions** — each subBlock should only show for the operations that actually use it
891891
5. **Verify `{Service}BlockMeta` is exported** with at least 7 templates, each having `icon`, `title`, `prompt`, `modules`, `category`, and `tags`
892-
</content>

.agents/skills/add-connector/SKILL.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -624,4 +624,3 @@ export const CONNECTOR_META_REGISTRY: ConnectorMetaRegistry = {
624624
- [ ] Icon exists in `components/icons.tsx` (or asked user to provide SVG)
625625
- [ ] Registered the full connector in `connectors/registry.server.ts`
626626
- [ ] Registered the meta in `connectors/registry.ts` (same alphabetical-by-id ordering as registry.server.ts)
627-
</content>

.agents/skills/add-hosted-key/SKILL.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -300,5 +300,3 @@ This summary helps reviewers verify that the pricing and rate limiting are well-
300300
- [ ] Provider entry added to the BYOK settings UI with icon and description
301301
- [ ] Env vars documented: `{PREFIX}_COUNT` and `{PREFIX}_1..N`
302302
- [ ] Pricing and throttling summary provided to reviewer
303-
</content>
304-
</invoke>

.agents/skills/cleanup/SKILL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ Comments apply last, on purpose: that pass operates on whatever the earlier stru
5151
2. If the `old_string` still matches verbatim, apply it — a content-anchored edit is safe even if its line moved.
5252
3. If it no longer matches (an earlier pass altered that region), do **not** force the stale patch. Re-derive the change from the current code by re-applying that pass's rule to the construct, or drop it if a prior pass already made it moot. Never apply a proposal against text it wasn't computed from.
5353

54-
After all edits, run `bun run lint:check` on the touched files.
54+
After all edits, run `bun run lint:check` (it runs `turbo run lint:check` across the repo — there is no per-file target, so run the full check).
5555

5656
## Step 4 — Summary
5757

.claude/commands/add-block.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -888,4 +888,3 @@ After creating the block, you MUST validate it against every tool it references:
888888
3. **Verify block outputs** cover the key fields returned by all tools
889889
4. **Verify conditions** — each subBlock should only show for the operations that actually use it
890890
5. **Verify `{Service}BlockMeta` is exported** with at least 7 templates, each having `icon`, `title`, `prompt`, `modules`, `category`, and `tags`
891-
</content>

.claude/commands/add-connector.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -623,4 +623,3 @@ export const CONNECTOR_META_REGISTRY: ConnectorMetaRegistry = {
623623
- [ ] Icon exists in `components/icons.tsx` (or asked user to provide SVG)
624624
- [ ] Registered the full connector in `connectors/registry.server.ts`
625625
- [ ] Registered the meta in `connectors/registry.ts` (same alphabetical-by-id ordering as registry.server.ts)
626-
</content>

.claude/commands/add-hosted-key.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -299,5 +299,3 @@ This summary helps reviewers verify that the pricing and rate limiting are well-
299299
- [ ] Provider entry added to the BYOK settings UI with icon and description
300300
- [ ] Env vars documented: `{PREFIX}_COUNT` and `{PREFIX}_1..N`
301301
- [ ] Pricing and throttling summary provided to reviewer
302-
</content>
303-
</invoke>

.claude/commands/cleanup.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ Comments apply last, on purpose: that pass operates on whatever the earlier stru
5050
2. If the `old_string` still matches verbatim, apply it — a content-anchored edit is safe even if its line moved.
5151
3. If it no longer matches (an earlier pass altered that region), do **not** force the stale patch. Re-derive the change from the current code by re-applying that pass's rule to the construct, or drop it if a prior pass already made it moot. Never apply a proposal against text it wasn't computed from.
5252

53-
After all edits, run `bun run lint:check` on the touched files.
53+
After all edits, run `bun run lint:check` (it runs `turbo run lint:check` across the repo — there is no per-file target, so run the full check).
5454

5555
## Step 4 — Summary
5656

.cursor/commands/add-block.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -883,4 +883,3 @@ After creating the block, you MUST validate it against every tool it references:
883883
3. **Verify block outputs** cover the key fields returned by all tools
884884
4. **Verify conditions** — each subBlock should only show for the operations that actually use it
885885
5. **Verify `{Service}BlockMeta` is exported** with at least 7 templates, each having `icon`, `title`, `prompt`, `modules`, `category`, and `tags`
886-
</content>

.cursor/commands/add-connector.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -618,4 +618,3 @@ export const CONNECTOR_META_REGISTRY: ConnectorMetaRegistry = {
618618
- [ ] Icon exists in `components/icons.tsx` (or asked user to provide SVG)
619619
- [ ] Registered the full connector in `connectors/registry.server.ts`
620620
- [ ] Registered the meta in `connectors/registry.ts` (same alphabetical-by-id ordering as registry.server.ts)
621-
</content>

0 commit comments

Comments
 (0)