BREAKING CHANGES: - Remove -cskill suffix from all skill names (use standard kebab-case) - Simplify marketplace.json to only official fields (fixes Issue #5) - SKILL.md body must be <500 lines (progressive disclosure via references/) New features: - Cross-platform support for 8+ platforms (Claude Code, Copilot, Cursor, Windsurf, Cline, Codex CLI, Gemini CLI) - scripts/install-template.sh: Auto-detect platform installer with --dry-run - scripts/validate.py: Spec compliance checker for generated skills - scripts/security_scan.py: Security scanner for hardcoded keys and dangerous patterns - MIGRATION.md: v3.x to v4.0 migration guide - 6 new reference files for progressive disclosure from lean SKILL.md Key changes: - SKILL.md: 4,116 → 272 lines with spec-compliant YAML frontmatter - marketplace.json: Stripped to {name, plugins} only - article-to-prototype-cskill/ → article-to-prototype/ - stock-analyzer-cskill/ → stock-analyzer/ - Export system integrates validation + security scanning - README.md rewritten for all supported platforms - Phase 5 pipeline outputs SKILL.md-first, spec-compliant skills Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
28 lines
1.3 KiB
Markdown
28 lines
1.3 KiB
Markdown
# SC-006: Generated SKILL.md Is Under 500 Lines
|
|
|
|
> Covers: FR-003 — Generated SKILL.md body MUST be <500 lines, with detailed content in `references/`
|
|
> Type: Happy Path
|
|
|
|
## Given
|
|
- The meta-skill is invoked with a complex workflow description that would produce substantial documentation
|
|
- Input: "Create a skill for managing a full CI/CD pipeline with build, test, deploy stages, rollback procedures, monitoring integration, and multi-environment support"
|
|
|
|
## When
|
|
- Phase 5 generates the SKILL.md and all supporting files
|
|
|
|
## Then
|
|
- The generated SKILL.md file has fewer than 500 lines total
|
|
- A `references/` directory exists alongside SKILL.md containing detailed documentation
|
|
- The SKILL.md body contains cross-reference pointers (e.g., `See references/deployment-guide.md`) to the detailed content
|
|
|
|
## Verification Method
|
|
|
|
**Method**: Automated test
|
|
|
|
**Steps**:
|
|
1. Run the meta-skill with the complex workflow description
|
|
2. Count the lines in the generated SKILL.md: `wc -l skill-name/SKILL.md`
|
|
3. Verify `references/` directory exists and contains at least one file
|
|
4. Grep for cross-reference patterns in SKILL.md: `grep -c 'references/' skill-name/SKILL.md`
|
|
|
|
**Expected evidence**: SKILL.md line count is less than 500. `references/` directory contains one or more `.md` files. SKILL.md body contains at least one reference to `references/`.
|