Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion examples/mcp-app/agent-bundle.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,5 @@ export default defineConfig({
scripts: {
'check-service-fixture': './src/scripts/check-service-fixture.ts',
},
skills: ['skills/service-readiness'],
targets: ['portable', 'codex', 'claude'],
});
5 changes: 3 additions & 2 deletions examples/skills-starter/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,9 @@ required. Both eval suites are deterministic and read only checked-in fixtures.

## What is authored

- `agent-bundle.config.ts` declares the plugin, its three Skills, and portable, Codex,
and Claude targets.
- `agent-bundle.config.ts` declares the plugin and its portable, Codex, and
Claude targets. The Skills are not listed there: every `skills/*/SKILL.md`
directory is discovered automatically by convention.
- `skills/incident-triage/SKILL.md` guides a production incident from first
signal through containment, evidence collection, and a handoff-ready update.
- `skills/dependency-upgrade/SKILL.md` plans dependency upgrades with API,
Expand Down
5 changes: 0 additions & 5 deletions examples/skills-starter/agent-bundle.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,5 @@ export default defineConfig({
name: 'skills-starter',
version: '1.0.0',
},
skills: [
'skills/dependency-upgrade',
'skills/incident-triage',
'skills/release-review',
],
targets: ['portable', 'codex', 'claude'],
});
Loading