@rfxlamia/skillkit 1.0.0 → 1.2.0
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/agents/agents/creative-copywriter.md +212 -0
- package/agents/agents/dario-amodei.md +135 -0
- package/agents/agents/doc-simplifier.md +63 -0
- package/agents/agents/kotlin-pro.md +433 -0
- package/agents/agents/red-team.md +136 -0
- package/agents/agents/sam-altman.md +121 -0
- package/agents/agents/seo-manager.md +184 -0
- package/package.json +7 -2
- package/skills/quick-spec/tests/__pycache__/test_skill.cpython-314-pytest-9.0.2.pyc +0 -0
- package/skills/skillkit/.claude/settings.local.json +7 -0
- package/skills/skillkit/scripts/__pycache__/decision_helper.cpython-314.pyc +0 -0
- package/skills/skillkit/scripts/__pycache__/quick_validate.cpython-312.pyc +0 -0
- package/skills/skillkit/scripts/__pycache__/quick_validate.cpython-314.pyc +0 -0
- package/skills/skillkit/scripts/__pycache__/test_generator.cpython-314-pytest-9.0.2.pyc +0 -0
- package/skills/skillkit/scripts/utils/__pycache__/__init__.cpython-312.pyc +0 -0
- package/skills/skillkit/scripts/utils/__pycache__/__init__.cpython-314.pyc +0 -0
- package/skills/skillkit/scripts/utils/__pycache__/budget_tracker.cpython-312.pyc +0 -0
- package/skills/skillkit/scripts/utils/__pycache__/budget_tracker.cpython-314.pyc +0 -0
- package/skills/skillkit/scripts/utils/__pycache__/output_formatter.cpython-312.pyc +0 -0
- package/skills/skillkit/scripts/utils/__pycache__/output_formatter.cpython-314.pyc +0 -0
- package/skills/skillkit/scripts/utils/__pycache__/reference_validator.cpython-312.pyc +0 -0
- package/skills/skillkit/scripts/utils/__pycache__/reference_validator.cpython-314.pyc +0 -0
- package/skills/skillkit-help/SKILL.md +81 -0
- package/skills/skillkit-help/knowledge/application/09-case-studies.md +257 -0
- package/skills/skillkit-help/knowledge/application/12-testing-and-validation.md +276 -0
- package/skills/skillkit-help/knowledge/foundation/01-why-skills-exist.md +246 -0
- package/skills/skillkit-help/knowledge/foundation/02-skills-vs-subagents-comparison.md +312 -0
- package/skills/skillkit-help/knowledge/foundation/03-skills-vs-subagents-decision-tree.md +346 -0
- package/skills/skillkit-help/knowledge/foundation/06-platform-constraints.md +237 -0
- package/skills/skillkit-help/knowledge/foundation/08-when-not-to-use-skills.md +270 -0
- package/skills/skillkit-help/template/SKILL.md +52 -0
- package/skills/skills/adversarial-review/SKILL.md +219 -0
- package/skills/skills/baby-education/SKILL.md +260 -0
- package/skills/skills/baby-education/references/advanced-techniques.md +323 -0
- package/skills/skills/baby-education/references/transformations.md +345 -0
- package/skills/skills/been-there-done-that/SKILL.md +455 -0
- package/skills/skills/been-there-done-that/references/analysis-patterns.md +162 -0
- package/skills/skills/been-there-done-that/references/git-commands.md +132 -0
- package/skills/skills/been-there-done-that/references/tree-insertion-logic.md +145 -0
- package/skills/skills/coolhunter/SKILL.md +270 -0
- package/skills/skills/coolhunter/assets/elicitation-methods.csv +51 -0
- package/skills/skills/coolhunter/knowledge/elicitation-methods.md +312 -0
- package/skills/skills/coolhunter/references/workflow-execution.md +238 -0
- package/skills/skills/coolhunter/workflow-plan-coolhunter.md +232 -0
- package/skills/skills/creative-copywriting/SKILL.md +324 -0
- package/skills/skills/creative-copywriting/databases/README.md +60 -0
- package/skills/skills/creative-copywriting/databases/carousel-structures.csv +16 -0
- package/skills/skills/creative-copywriting/databases/emotional-arcs.csv +11 -0
- package/skills/skills/creative-copywriting/databases/hook-formulas.csv +51 -0
- package/skills/skills/creative-copywriting/databases/power-words.csv +201 -0
- package/skills/skills/creative-copywriting/databases/psychological-triggers.csv +21 -0
- package/skills/skills/creative-copywriting/databases/read-more-patterns.csv +26 -0
- package/skills/skills/creative-copywriting/databases/swipe-triggers.csv +31 -0
- package/skills/skills/creative-copywriting/references/carousel-psychology.md +223 -0
- package/skills/skills/creative-copywriting/references/hook-anatomy.md +169 -0
- package/skills/skills/creative-copywriting/references/power-word-science.md +134 -0
- package/skills/skills/creative-copywriting/references/storytelling-frameworks.md +157 -0
- package/skills/skills/diverse-content-gen/SKILL.md +201 -0
- package/skills/skills/diverse-content-gen/references/advanced-techniques.md +320 -0
- package/skills/skills/diverse-content-gen/references/research-findings.md +379 -0
- package/skills/skills/diverse-content-gen/references/task-workflows.md +241 -0
- package/skills/skills/diverse-content-gen/references/tool-integration.md +419 -0
- package/skills/skills/diverse-content-gen/references/troubleshooting.md +426 -0
- package/skills/skills/diverse-content-gen/references/vs-core-technique.md +240 -0
- package/skills/skills/framework-critical-thinking/SKILL.md +220 -0
- package/skills/skills/framework-critical-thinking/references/bias_detector.md +375 -0
- package/skills/skills/framework-critical-thinking/references/fallback_handler.md +239 -0
- package/skills/skills/framework-critical-thinking/references/memory_curator.md +161 -0
- package/skills/skills/framework-critical-thinking/references/metacognitive_monitor.md +297 -0
- package/skills/skills/framework-critical-thinking/references/producer_critic_orchestrator.md +333 -0
- package/skills/skills/framework-critical-thinking/references/reasoning_router.md +235 -0
- package/skills/skills/framework-critical-thinking/references/reasoning_validator.md +97 -0
- package/skills/skills/framework-critical-thinking/references/reflection_trigger.md +78 -0
- package/skills/skills/framework-critical-thinking/references/self_verification.md +388 -0
- package/skills/skills/framework-critical-thinking/references/uncertainty_quantifier.md +207 -0
- package/skills/skills/framework-initiative/SKILL.md +231 -0
- package/skills/skills/framework-initiative/references/examples.md +150 -0
- package/skills/skills/framework-initiative/references/impact-analysis.md +157 -0
- package/skills/skills/framework-initiative/references/intent-patterns.md +145 -0
- package/skills/skills/framework-initiative/references/star-framework.md +165 -0
- package/skills/skills/humanize-docs/SKILL.md +203 -0
- package/skills/skills/humanize-docs/references/advanced-techniques.md +13 -0
- package/skills/skills/humanize-docs/references/core-transformations.md +368 -0
- package/skills/skills/humanize-docs/references/detection-patterns.md +400 -0
- package/skills/skills/humanize-docs/references/examples-gallery.md +374 -0
- package/skills/skills/imagine/SKILL.md +190 -0
- package/skills/skills/imagine/references/artstyle-corporate-memphis.md +625 -0
- package/skills/skills/imagine/references/artstyle-crewdson-hyperrealism.md +295 -0
- package/skills/skills/imagine/references/artstyle-iphone-social-media.md +426 -0
- package/skills/skills/imagine/references/artstyle-sciencesaru.md +276 -0
- package/skills/skills/pre-deploy-checklist/README.md +26 -0
- package/skills/skills/pre-deploy-checklist/SKILL.md +153 -0
- package/skills/skills/pre-deploy-checklist/references/checklist-categories.md +174 -0
- package/skills/skills/pre-deploy-checklist/references/domain-prompts.md +216 -0
- package/skills/skills/prompt-engineering/SKILL.md +209 -0
- package/skills/skills/prompt-engineering/references/advanced-combinations.md +444 -0
- package/skills/skills/prompt-engineering/references/chain-of-thought.md +140 -0
- package/skills/skills/prompt-engineering/references/decision_matrix.md +220 -0
- package/skills/skills/prompt-engineering/references/few-shot.md +346 -0
- package/skills/skills/prompt-engineering/references/json-format.md +270 -0
- package/skills/skills/prompt-engineering/references/natural-language.md +420 -0
- package/skills/skills/prompt-engineering/references/pitfalls.md +365 -0
- package/skills/skills/prompt-engineering/references/prompt-chaining.md +498 -0
- package/skills/skills/prompt-engineering/references/react.md +108 -0
- package/skills/skills/prompt-engineering/references/self-consistency.md +322 -0
- package/skills/skills/prompt-engineering/references/tree-of-thoughts.md +386 -0
- package/skills/skills/prompt-engineering/references/xml-format.md +220 -0
- package/skills/skills/prompt-engineering/references/yaml-format.md +488 -0
- package/skills/skills/prompt-engineering/references/zero-shot.md +74 -0
- package/skills/skills/quick-spec/SKILL.md +280 -0
- package/skills/skills/quick-spec/assets/tech-spec-template.md +74 -0
- package/skills/skills/quick-spec/references/step-01-understand.md +189 -0
- package/skills/skills/quick-spec/references/step-02-investigate.md +144 -0
- package/skills/skills/quick-spec/references/step-03-generate.md +128 -0
- package/skills/skills/quick-spec/references/step-04-review.md +173 -0
- package/skills/skills/quick-spec/tests/__pycache__/test_skill.cpython-314-pytest-9.0.2.pyc +0 -0
- package/skills/skills/quick-spec/tests/test_scenarios.md +83 -0
- package/skills/skills/quick-spec/tests/test_skill.py +136 -0
- package/skills/skills/readme-expert/SKILL.md +538 -0
- package/skills/skills/readme-expert/knowledge/INDEX.md +192 -0
- package/skills/skills/readme-expert/knowledge/application/quality-standards.md +470 -0
- package/skills/skills/readme-expert/knowledge/application/script-executor.md +604 -0
- package/skills/skills/readme-expert/knowledge/application/template-library.md +822 -0
- package/skills/skills/readme-expert/knowledge/foundation/codebase-scanner.md +361 -0
- package/skills/skills/readme-expert/knowledge/foundation/validation-checklist.md +481 -0
- package/skills/skills/red-teaming/SKILL.md +321 -0
- package/skills/skills/red-teaming/references/ai-llm-redteam.md +517 -0
- package/skills/skills/red-teaming/references/attack-techniques.md +410 -0
- package/skills/skills/red-teaming/references/cybersecurity-redteam.md +383 -0
- package/skills/skills/red-teaming/references/tools-frameworks.md +446 -0
- package/skills/skills/releasing/.skillkit-mode +1 -0
- package/skills/skills/releasing/SKILL.md +225 -0
- package/skills/skills/releasing/references/version-detection.md +108 -0
- package/skills/skills/screenwriter/SKILL.md +273 -0
- package/skills/skills/screenwriter/references/advanced-techniques.md +216 -0
- package/skills/skills/screenwriter/references/pipeline-integration.md +266 -0
- package/skills/skills/skillkit/.claude/settings.local.json +7 -0
- package/skills/skills/skillkit/.claude-plugin/plugin.json +27 -0
- package/skills/skills/skillkit/CHANGELOG.md +484 -0
- package/skills/skills/skillkit/SKILL.md +511 -0
- package/skills/skills/skillkit/commands/skillkit.md +6 -0
- package/skills/skills/skillkit/commands/validate-plan.md +6 -0
- package/skills/skills/skillkit/commands/verify.md +6 -0
- package/skills/skills/skillkit/knowledge/INDEX.md +352 -0
- package/skills/skills/skillkit/knowledge/application/09-case-studies.md +257 -0
- package/skills/skills/skillkit/knowledge/application/10-technical-architecture.md +324 -0
- package/skills/skills/skillkit/knowledge/application/11-adoption-strategy.md +267 -0
- package/skills/skills/skillkit/knowledge/application/12-testing-and-validation.md +276 -0
- package/skills/skills/skillkit/knowledge/application/13-competitive-landscape.md +198 -0
- package/skills/skills/skillkit/knowledge/foundation/01-why-skills-exist.md +246 -0
- package/skills/skills/skillkit/knowledge/foundation/02-skills-vs-subagents-comparison.md +312 -0
- package/skills/skills/skillkit/knowledge/foundation/03-skills-vs-subagents-decision-tree.md +346 -0
- package/skills/skills/skillkit/knowledge/foundation/04-hybrid-patterns.md +308 -0
- package/skills/skills/skillkit/knowledge/foundation/05-token-economics.md +275 -0
- package/skills/skills/skillkit/knowledge/foundation/06-platform-constraints.md +237 -0
- package/skills/skills/skillkit/knowledge/foundation/07-security-concerns.md +322 -0
- package/skills/skills/skillkit/knowledge/foundation/08-when-not-to-use-skills.md +270 -0
- package/skills/skills/skillkit/knowledge/plugin-guide.md +614 -0
- package/skills/skills/skillkit/knowledge/tools/14-validation-tools-guide.md +150 -0
- package/skills/skills/skillkit/knowledge/tools/15-cost-tools-guide.md +157 -0
- package/skills/skills/skillkit/knowledge/tools/16-security-tools-guide.md +122 -0
- package/skills/skills/skillkit/knowledge/tools/17-pattern-tools-guide.md +161 -0
- package/skills/skills/skillkit/knowledge/tools/18-decision-helper-guide.md +243 -0
- package/skills/skills/skillkit/knowledge/tools/19-test-generator-guide.md +275 -0
- package/skills/skills/skillkit/knowledge/tools/20-split-skill-guide.md +149 -0
- package/skills/skills/skillkit/knowledge/tools/21-quality-scorer-guide.md +226 -0
- package/skills/skills/skillkit/knowledge/tools/22-migration-helper-guide.md +356 -0
- package/skills/skills/skillkit/knowledge/tools/23-subagent-creation-guide.md +448 -0
- package/skills/skills/skillkit/knowledge/tools/24-behavioral-testing-guide.md +122 -0
- package/skills/skills/skillkit/references/proposal-generation.md +982 -0
- package/skills/skills/skillkit/references/rationalization-catalog.md +75 -0
- package/skills/skills/skillkit/references/research-methodology.md +661 -0
- package/skills/skills/skillkit/references/section-2-full-creation-workflow.md +452 -0
- package/skills/skills/skillkit/references/section-3-validation-workflow-existing-skill.md +63 -0
- package/skills/skills/skillkit/references/section-4-decision-workflow-skills-vs-subagents.md +64 -0
- package/skills/skills/skillkit/references/section-5-migration-workflow-doc-to-skill.md +58 -0
- package/skills/skills/skillkit/references/section-6-subagent-creation-workflow.md +499 -0
- package/skills/skills/skillkit/references/section-7-knowledge-reference-map.md +72 -0
- package/skills/skills/skillkit/scripts/__pycache__/decision_helper.cpython-314.pyc +0 -0
- package/skills/skills/skillkit/scripts/__pycache__/quick_validate.cpython-312.pyc +0 -0
- package/skills/skills/skillkit/scripts/__pycache__/quick_validate.cpython-314.pyc +0 -0
- package/skills/skills/skillkit/scripts/__pycache__/test_generator.cpython-314-pytest-9.0.2.pyc +0 -0
- package/skills/skills/skillkit/scripts/decision_helper.py +799 -0
- package/skills/skills/skillkit/scripts/init_skill.py +400 -0
- package/skills/skills/skillkit/scripts/init_subagent.py +231 -0
- package/skills/skills/skillkit/scripts/migration_helper.py +669 -0
- package/skills/skills/skillkit/scripts/package_skill.py +211 -0
- package/skills/skills/skillkit/scripts/pattern_detector.py +381 -0
- package/skills/skills/skillkit/scripts/pattern_detector_new.py +382 -0
- package/skills/skills/skillkit/scripts/pressure_tester.py +157 -0
- package/skills/skills/skillkit/scripts/quality_scorer.py +999 -0
- package/skills/skills/skillkit/scripts/quick_validate.py +100 -0
- package/skills/skills/skillkit/scripts/security_scanner.py +474 -0
- package/skills/skills/skillkit/scripts/split_skill.py +540 -0
- package/skills/skills/skillkit/scripts/test_generator.py +695 -0
- package/skills/skills/skillkit/scripts/token_estimator.py +493 -0
- package/skills/skills/skillkit/scripts/utils/__init__.py +49 -0
- package/skills/skills/skillkit/scripts/utils/__pycache__/__init__.cpython-312.pyc +0 -0
- package/skills/skills/skillkit/scripts/utils/__pycache__/__init__.cpython-314.pyc +0 -0
- package/skills/skills/skillkit/scripts/utils/__pycache__/budget_tracker.cpython-312.pyc +0 -0
- package/skills/skills/skillkit/scripts/utils/__pycache__/budget_tracker.cpython-314.pyc +0 -0
- package/skills/skills/skillkit/scripts/utils/__pycache__/output_formatter.cpython-312.pyc +0 -0
- package/skills/skills/skillkit/scripts/utils/__pycache__/output_formatter.cpython-314.pyc +0 -0
- package/skills/skills/skillkit/scripts/utils/__pycache__/reference_validator.cpython-312.pyc +0 -0
- package/skills/skills/skillkit/scripts/utils/__pycache__/reference_validator.cpython-314.pyc +0 -0
- package/skills/skills/skillkit/scripts/utils/budget_tracker.py +388 -0
- package/skills/skills/skillkit/scripts/utils/output_formatter.py +263 -0
- package/skills/skills/skillkit/scripts/utils/reference_validator.py +401 -0
- package/skills/skills/skillkit/scripts/validate_skill.py +594 -0
- package/skills/skills/skillkit/tests/test_behavioral.py +39 -0
- package/skills/skills/skillkit/tests/test_scenarios.md +83 -0
- package/skills/skills/skillkit/tests/test_skill.py +136 -0
- package/skills/skills/skillkit-help/SKILL.md +81 -0
- package/skills/skills/skillkit-help/knowledge/application/09-case-studies.md +257 -0
- package/skills/skills/skillkit-help/knowledge/application/12-testing-and-validation.md +276 -0
- package/skills/skills/skillkit-help/knowledge/foundation/01-why-skills-exist.md +246 -0
- package/skills/skills/skillkit-help/knowledge/foundation/02-skills-vs-subagents-comparison.md +312 -0
- package/skills/skills/skillkit-help/knowledge/foundation/03-skills-vs-subagents-decision-tree.md +346 -0
- package/skills/skills/skillkit-help/knowledge/foundation/06-platform-constraints.md +237 -0
- package/skills/skills/skillkit-help/knowledge/foundation/08-when-not-to-use-skills.md +270 -0
- package/skills/skills/skillkit-help/template/SKILL.md +52 -0
- package/skills/skills/social-media-seo/SKILL.md +278 -0
- package/skills/skills/social-media-seo/databases/caption-styles.csv +31 -0
- package/skills/skills/social-media-seo/databases/engagement-tactics.csv +16 -0
- package/skills/skills/social-media-seo/databases/hashtag-strategies.csv +21 -0
- package/skills/skills/social-media-seo/databases/hook-formulas.csv +26 -0
- package/skills/skills/social-media-seo/databases/keyword-clusters.csv +11 -0
- package/skills/skills/social-media-seo/databases/thread-structures.csv +26 -0
- package/skills/skills/social-media-seo/databases/viral-patterns.csv +21 -0
- package/skills/skills/social-media-seo/references/analytics-guide.md +321 -0
- package/skills/skills/social-media-seo/references/instagram-seo.md +235 -0
- package/skills/skills/social-media-seo/references/threads-seo.md +305 -0
- package/skills/skills/social-media-seo/references/x-twitter-seo.md +337 -0
- package/skills/skills/social-media-seo/scripts/query_database.py +191 -0
- package/skills/skills/storyteller/SKILL.md +241 -0
- package/skills/skills/storyteller/references/transformation-methodology.md +293 -0
- package/skills/skills/storyteller/references/visual-vocabulary.md +177 -0
- package/skills/skills/thread-pro/SKILL.md +162 -0
- package/skills/skills/thread-pro/anti-ai-patterns.md +120 -0
- package/skills/skills/thread-pro/hook-formulas.md +138 -0
- package/skills/skills/thread-pro/references/anti-ai-patterns.md +120 -0
- package/skills/skills/thread-pro/references/hook-formulas.md +138 -0
- package/skills/skills/thread-pro/references/thread-structures.md +240 -0
- package/skills/skills/thread-pro/references/voice-injection.md +130 -0
- package/skills/skills/thread-pro/thread-structures.md +240 -0
- package/skills/skills/thread-pro/voice-injection.md +130 -0
- package/skills/skills/tinkering/SKILL.md +251 -0
- package/skills/skills/tinkering/references/graduation-checklist.md +100 -0
- package/skills/skills/validate-plan/.skillkit-mode +1 -0
- package/skills/skills/validate-plan/SKILL.md +406 -0
- package/skills/skills/validate-plan/references/dry-principles.md +251 -0
- package/skills/skills/validate-plan/references/gap-analysis-guide.md +320 -0
- package/skills/skills/validate-plan/references/tdd-patterns.md +413 -0
- package/skills/skills/validate-plan/references/yagni-checklist.md +330 -0
- package/skills/skills/verify-before-ship/.skillkit-mode +1 -0
- package/skills/skills/verify-before-ship/SKILL.md +116 -0
- package/skills/skills/verify-before-ship/references/anti-rationalization.md +212 -0
- package/skills/skills/verify-before-ship/references/verification-gates.md +305 -0
- package/skills-manifest.json +8 -2
- package/src/banner.js +1 -1
- package/src/cli.js +15 -4
- package/src/install.js +45 -29
- package/src/install.test.js +75 -7
- package/src/picker.js +15 -4
- package/src/picker.test.js +36 -1
- package/src/scope.js +8 -39
- package/src/scope.test.js +9 -13
- package/src/tools.js +76 -0
- package/src/tools.test.js +80 -0
|
@@ -0,0 +1,484 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to the Claude Skill Kit project will be documented in this file.
|
|
4
|
+
|
|
5
|
+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
|
+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
|
+
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
## [2.1.6] - 2026-03-14
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
- Installation via Claude Code plugin marketplace is currently broken due to a `disable-model-invocation` conflict between plugin commands and skills of the same name — marked as known issue in README
|
|
14
|
+
|
|
15
|
+
### Documentation
|
|
16
|
+
- Updated README installation section: recommend copying skills directly to `~/.claude/skills/` as the reliable method
|
|
17
|
+
- Plugin marketplace section now clearly marked with ⚠️ known issue warning
|
|
18
|
+
|
|
19
|
+
---
|
|
20
|
+
|
|
21
|
+
## [2.1.0] - 2026-03-13
|
|
22
|
+
|
|
23
|
+
### Added
|
|
24
|
+
- **Full Mode Behavioral Testing Protocol** (`references/section-2-full-creation-workflow.md`)
|
|
25
|
+
- STEP 3 (RED): Subagent dispatch instructions for baseline pressure testing
|
|
26
|
+
- STEP 7 (GREEN): Compliance verification with skill loaded
|
|
27
|
+
- STEP 12 (REFACTOR): Combined pressure testing to close loopholes
|
|
28
|
+
- Pattern ported from `writing-skills` TDD methodology
|
|
29
|
+
|
|
30
|
+
### Changed
|
|
31
|
+
- `SKILL.md`: Full mode Steps 3, 7, 12 now reference section-2 (mandatory load)
|
|
32
|
+
|
|
33
|
+
### Deprecated
|
|
34
|
+
- `pressure_tester.py`: Superseded by section-2 Full Mode Behavioral Testing Protocol
|
|
35
|
+
- Script now exits with deprecation message and code 1
|
|
36
|
+
- Scenario definitions (PressureType, SkillType) preserved as reference data
|
|
37
|
+
|
|
38
|
+
## [2.0.1] - 2026-03-06
|
|
39
|
+
|
|
40
|
+
### Fixed
|
|
41
|
+
- `decision_helper.py`: Added `mode_reasoning` alongside `mode_note` for output contract compatibility.
|
|
42
|
+
- `test_generator.py`: Behavioral template generation is now gated to pytest mode only.
|
|
43
|
+
- `pressure_tester.py`: Added explicit stub-mode warning output.
|
|
44
|
+
|
|
45
|
+
### Changed
|
|
46
|
+
- Updated hardcoded local path examples to portable path usage in SkillKit docs and tool guides.
|
|
47
|
+
- Enforced stronger stop conditions in `SKILL.md` (mode selection, user approval gates, ambiguous routing).
|
|
48
|
+
- Deprecated legacy structural-only `test_generator.py` usage in favor of v2 behavioral workflow guidance.
|
|
49
|
+
|
|
50
|
+
## [2.0.0] - 2025-03-05
|
|
51
|
+
|
|
52
|
+
### Added
|
|
53
|
+
- **Workflow Modes**: Fast mode (original 12-step) and Full mode (15-step with TDD)
|
|
54
|
+
- **Behavioral Testing**: `pressure_tester.py` for testing skill compliance under pressure
|
|
55
|
+
- **Rationalization Catalog**: Pre-built tables for common agent rationalizations
|
|
56
|
+
- **Quality Scoring v2**: 60/40 split (structural/behavioral) in full mode
|
|
57
|
+
- **Mode Selection**: `--mode` flag across all tools
|
|
58
|
+
- **TDD Integration**: RED-GREEN-REFACTOR cycle for skill creation
|
|
59
|
+
|
|
60
|
+
### Changed
|
|
61
|
+
- `decision_helper.py`: Now recommends workflow mode based on skill type
|
|
62
|
+
- `init_skill.py`: Mode selection prompt during skill creation
|
|
63
|
+
- `quality_scorer.py`: Added behavioral scoring dimension
|
|
64
|
+
- `token_estimator.py`: Includes behavioral testing cost
|
|
65
|
+
- `test_generator.py`: Generates behavioral pressure tests
|
|
66
|
+
- SKILL.md: Updated to v2 workflow documentation
|
|
67
|
+
|
|
68
|
+
### Migration Guide
|
|
69
|
+
```bash
|
|
70
|
+
# Existing skills continue to work (fast mode is default)
|
|
71
|
+
# To use full mode:
|
|
72
|
+
python3 scripts/init_skill.py my-skill --mode full
|
|
73
|
+
```
|
|
74
|
+
|
|
75
|
+
## [1.3.0] - 2025-02-06
|
|
76
|
+
|
|
77
|
+
### Summary
|
|
78
|
+
Major feature release adding **subagent creation capability** to skillkit. Previously, skillkit could only create skills and would stop if decision workflow recommended subagents. Now it can create BOTH skills and subagents with full workflows for each.
|
|
79
|
+
|
|
80
|
+
### Added
|
|
81
|
+
|
|
82
|
+
#### Subagent Creation Support (NEW)
|
|
83
|
+
- **`init_subagent.py`** - Automation script for subagent initialization
|
|
84
|
+
- Creates SUBAGENT.md with comprehensive template
|
|
85
|
+
- Includes YAML frontmatter configuration
|
|
86
|
+
- Defines role, workflow, triggers, and examples
|
|
87
|
+
- **Usage**: `python scripts/init_subagent.py name --path /path`
|
|
88
|
+
|
|
89
|
+
- **Section 6: Subagent Creation Workflow** (`references/section-6-subagent-creation-workflow.md`)
|
|
90
|
+
- 8-step process for creating subagents
|
|
91
|
+
- Step 0: Requirements & Role Definition
|
|
92
|
+
- Step 1: Initialize Structure
|
|
93
|
+
- Step 2: Define Configuration (YAML)
|
|
94
|
+
- Step 3: Define Role and Workflow
|
|
95
|
+
- Step 4: Define Response Format
|
|
96
|
+
- Step 5: Add Examples
|
|
97
|
+
- Step 6: Validation
|
|
98
|
+
- Step 7: Testing
|
|
99
|
+
- Step 8: Documentation & Deployment
|
|
100
|
+
|
|
101
|
+
- **Subagent Creation Guide** (`knowledge/tools/23-subagent-creation-guide.md`)
|
|
102
|
+
- Step-by-step guide for using init_subagent.py
|
|
103
|
+
- SUBAGENT.md structure documentation
|
|
104
|
+
- Subagent types and tool permissions
|
|
105
|
+
- Validation checklist
|
|
106
|
+
- Testing and deployment guidance
|
|
107
|
+
|
|
108
|
+
#### Updated Decision Workflow
|
|
109
|
+
- **Section 4** now supports subagent creation path
|
|
110
|
+
- Previously: "Subagents" recommendation → STOP (out of scope)
|
|
111
|
+
- Now: "Subagents" recommendation → PROCEED to Section 6
|
|
112
|
+
- Added "Hybrid" recommendation handling
|
|
113
|
+
|
|
114
|
+
#### Updated SKILL.md
|
|
115
|
+
- New intent detection: "create subagent" routes to Section 6
|
|
116
|
+
- Added Section 6 overview for subagent creation
|
|
117
|
+
- Updated tool list to include init_subagent.py
|
|
118
|
+
- Updated description to mention subagent creation
|
|
119
|
+
- Renumbered sections (Section 7 → Section 8)
|
|
120
|
+
|
|
121
|
+
#### Updated Knowledge Index
|
|
122
|
+
- Added File 23: Subagent Creation Guide
|
|
123
|
+
- Total files: 22 → 23
|
|
124
|
+
|
|
125
|
+
### Changed
|
|
126
|
+
|
|
127
|
+
- **Decision Helper** workflow now continues to subagent creation
|
|
128
|
+
- **Tool count**: 9 → 10 automation scripts
|
|
129
|
+
- **Primary triggers** updated to include "create subagent"
|
|
130
|
+
|
|
131
|
+
### Migration Guide
|
|
132
|
+
|
|
133
|
+
#### For Users
|
|
134
|
+
|
|
135
|
+
No breaking changes. New capability is additive:
|
|
136
|
+
- Existing skill creation workflows unchanged
|
|
137
|
+
- New subagent creation workflow available
|
|
138
|
+
- Decision workflow now has complete path for all recommendations
|
|
139
|
+
|
|
140
|
+
#### Usage Examples
|
|
141
|
+
|
|
142
|
+
**Create a Skill:**
|
|
143
|
+
```bash
|
|
144
|
+
python scripts/init_skill.py my-skill --path /path
|
|
145
|
+
```
|
|
146
|
+
|
|
147
|
+
**Create a Subagent:**
|
|
148
|
+
```bash
|
|
149
|
+
python scripts/init_subagent.py my-subagent --path /path
|
|
150
|
+
```
|
|
151
|
+
|
|
152
|
+
**Decision Workflow (now with subagent support):**
|
|
153
|
+
```
|
|
154
|
+
User: "Should I use Skill or Subagent for code review?"
|
|
155
|
+
→ Run decision_helper.py
|
|
156
|
+
→ If "Subagent" recommended
|
|
157
|
+
→ PROCEED to Section 6 (Subagent Creation)
|
|
158
|
+
```
|
|
159
|
+
|
|
160
|
+
---
|
|
161
|
+
|
|
162
|
+
## [1.2.1] - 2025-11-14
|
|
163
|
+
|
|
164
|
+
### Summary
|
|
165
|
+
Critical bug fixes for quality scoring and confidence calculation. Imperative voice detection improved by 11x, making quality scores more accurate and reliable.
|
|
166
|
+
|
|
167
|
+
### Fixed
|
|
168
|
+
|
|
169
|
+
- **quality_scorer.py**: Fixed imperative voice detection logic
|
|
170
|
+
- Strip YAML frontmatter before processing
|
|
171
|
+
- Remove markdown formatting (bold, italic, code, links)
|
|
172
|
+
- Check first 3 words instead of only first word
|
|
173
|
+
- Lowered threshold: 70% → 50% for full points (30% for partial)
|
|
174
|
+
- Added more imperative verbs (load, scan, extract, detect, etc.)
|
|
175
|
+
- **Impact**: Imperative detection improved from 3.33% to 37.50% (11x improvement)
|
|
176
|
+
- **Example**: readme-expert.skill score improved from 78/100 (Grade C) to 81/100 (Grade B)
|
|
177
|
+
|
|
178
|
+
- **decision_helper.py**: Fixed confidence calculation bug for Subagent recommendations
|
|
179
|
+
- Score -3 was showing 82% confidence (should be 75%)
|
|
180
|
+
- Score -5 was showing 75% confidence (should be 85%)
|
|
181
|
+
- Confidence was increasing as scores got weaker (backwards logic)
|
|
182
|
+
- **Root cause**: Formulas used `(score + 5)` and `(score + 8)` which made confidence increase as absolute score decreased
|
|
183
|
+
- **Fix**: Changed to `(abs(score) - 3)` and `(abs(score) - 6)` to ensure confidence increases with stronger scores
|
|
184
|
+
|
|
185
|
+
### Changed
|
|
186
|
+
|
|
187
|
+
- **.gitignore**: Added test directories and Python cache files
|
|
188
|
+
- Added `__pycache__/` directories
|
|
189
|
+
- Added `test/` and `tests/` directories
|
|
190
|
+
- Prevents test artifacts from being committed
|
|
191
|
+
|
|
192
|
+
### Testing
|
|
193
|
+
|
|
194
|
+
- ✅ quality_scorer.py: Verified imperative detection on multiple skills
|
|
195
|
+
- ✅ decision_helper.py: Tested with multiple score values to verify correct behavior
|
|
196
|
+
- ✅ Style scores: Average improvement of 73% in scoring accuracy
|
|
197
|
+
|
|
198
|
+
---
|
|
199
|
+
|
|
200
|
+
## [1.2.0] - 2025-11-13
|
|
201
|
+
|
|
202
|
+
### Summary
|
|
203
|
+
Comprehensive quality assurance improvements addressing Test Session #3 findings. Focus: prevent file bloat, broken references, and tool inconsistencies. **81% of issues fixed** with new utility infrastructure.
|
|
204
|
+
|
|
205
|
+
### Added
|
|
206
|
+
|
|
207
|
+
#### Infrastructure & Utilities (v1.2)
|
|
208
|
+
- **`budget_tracker.py`** - FileContentBudget class for hard content limits
|
|
209
|
+
- Hard line/token limits (P0: ≤150 lines, P1: ≤100, P2: ≤60)
|
|
210
|
+
- Real-time progress tracking with 80% warning threshold
|
|
211
|
+
- TokenCounter with no external dependencies (works in Claude.ai)
|
|
212
|
+
- STANDARD_BUDGETS constants for P0/P1/P2 priorities
|
|
213
|
+
- **Addresses Issue #2**: File Size Bloat (prevents 4-9x target overruns)
|
|
214
|
+
|
|
215
|
+
- **`reference_validator.py`** - File reference validation system
|
|
216
|
+
- CrossReferenceValidator class: Comprehensive markdown/code/path reference detection
|
|
217
|
+
- SkillPackageValidator wrapper: Pre-packaging validation
|
|
218
|
+
- Orphaned file detection: Finds unreferenced files in skill directory
|
|
219
|
+
- ValidationResult dataclass: Structured error reporting
|
|
220
|
+
- **Addresses Issues #1, #5, #7**: Broken references, file validation, orphaned files
|
|
221
|
+
|
|
222
|
+
- **Enhanced `validate_skill.py`** (v1.2)
|
|
223
|
+
- Integrated CrossReferenceValidator for comprehensive checking
|
|
224
|
+
- Detects: broken links, missing files, orphaned files
|
|
225
|
+
- Graceful fallback to simple validation if utility unavailable
|
|
226
|
+
- More detailed error messages with actionable suggestions
|
|
227
|
+
|
|
228
|
+
- **Enhanced `package_skill.py`** (v1.2)
|
|
229
|
+
- Pre-packaging reference validation (detects issues before deployment)
|
|
230
|
+
- Orphaned file warnings
|
|
231
|
+
- New `--strict` flag for strict validation mode
|
|
232
|
+
- Prevents incomplete/broken skills in packages
|
|
233
|
+
|
|
234
|
+
### Changed
|
|
235
|
+
|
|
236
|
+
#### Parameter Standardization (v1.2)
|
|
237
|
+
- **test_generator.py**: Major parameter restructuring
|
|
238
|
+
- `--format {pytest,unittest,plain}` → `--test-format {pytest,unittest,plain}` (test framework choice)
|
|
239
|
+
- `--output {text,json}` → `--format {text,json}` (standardized output style)
|
|
240
|
+
- Backward compatibility: Old `--output` still works with deprecation warning
|
|
241
|
+
- Migration path: Remove `--output` in v2.0.0
|
|
242
|
+
- **Addresses Issue #3**: Tool Parameter Inconsistency
|
|
243
|
+
|
|
244
|
+
#### Documentation Updates (v1.2)
|
|
245
|
+
- **SKILL.md**:
|
|
246
|
+
- Removed old [ENHANCED] and [NEW] labels for cleaner readability
|
|
247
|
+
- Step 1c: Clarified Verbalized Sampling strategy (3-4 searches, respect p>0.10 thresholds)
|
|
248
|
+
- Step 1f: Added concise execution planning overview with reference to detailed section
|
|
249
|
+
- Step 2.5/2.8: Moved detailed instructions to references/section-2-full-creation-workflow.md
|
|
250
|
+
- Section 6: Updated test_generator.py parameters documentation
|
|
251
|
+
- New "Quality Assurance Enhancements (v1.2+)" section highlighting improvements
|
|
252
|
+
|
|
253
|
+
- **Tool Guides**: Updated 19-test-generator-guide.md with new parameter documentation
|
|
254
|
+
|
|
255
|
+
#### Procedural Improvements (v1.2)
|
|
256
|
+
- **Step 1c (Research)**: Documented enforcement of VS probability thresholds (p>0.10, p>0.12)
|
|
257
|
+
- Only execute 3-4 searches based on probability, not all 5
|
|
258
|
+
- Reduces research phase tokens: 13k → 8-10k (~25% savings)
|
|
259
|
+
- **Addresses Issue #4**: Research Tokens (60% fixed, procedural guidance added)
|
|
260
|
+
|
|
261
|
+
- **Step 1f (Execution Planning)**: Description length validation documented
|
|
262
|
+
- Recommend validating description (max 1024 chars) before generation
|
|
263
|
+
- Prevents wasted tokens if description fails validation
|
|
264
|
+
- **Addresses Issue #6**: Description Validation (100% fixed via documentation)
|
|
265
|
+
|
|
266
|
+
### Fixed
|
|
267
|
+
|
|
268
|
+
- **Broken Reference Pattern** (Issue #1): Now detectable via validate_skill.py → package_skill.py validation chain
|
|
269
|
+
- **File Size Bloat** (Issue #2): FileContentBudget class provides enforcement mechanism
|
|
270
|
+
- **Tool Parameter Inconsistency** (Issue #3): All tools now standardized, backward compatible
|
|
271
|
+
- **File Existence Validation** (Issue #5): Comprehensive markdown/code/path reference checking
|
|
272
|
+
- **Orphaned Files** (Issue #7): Detection and warning in packaging step
|
|
273
|
+
|
|
274
|
+
### Testing
|
|
275
|
+
|
|
276
|
+
- ✅ Import tests: Both new utilities (budget_tracker, reference_validator) working
|
|
277
|
+
- ✅ Parameter compatibility: test_generator.py accepts both --test-format and --format
|
|
278
|
+
- ✅ Backward compatibility: Old --output parameter still works with deprecation warnings
|
|
279
|
+
- ✅ Reference validation: Comprehensive file detection via multiple patterns
|
|
280
|
+
|
|
281
|
+
### Migration Guide
|
|
282
|
+
|
|
283
|
+
#### For Users Upgrading from v1.0.1
|
|
284
|
+
|
|
285
|
+
**Breaking Changes:** None - Full backward compatibility maintained
|
|
286
|
+
|
|
287
|
+
**Recommended Updates:**
|
|
288
|
+
1. Review Step 1f (execution planning) section in SKILL.md for P0/P1/P2 approach
|
|
289
|
+
2. Note: test_generator.py has new parameter structure:
|
|
290
|
+
- Old: `python scripts/test_generator.py skill/ --format pytest --output json`
|
|
291
|
+
- New: `python scripts/test_generator.py skill/ --test-format pytest --format json`
|
|
292
|
+
- Old parameters still work until v2.0.0 (with deprecation warnings)
|
|
293
|
+
|
|
294
|
+
3. Test new validation: `python scripts/validate_skill.py skill/ --format json`
|
|
295
|
+
- Now catches broken references more comprehensively
|
|
296
|
+
|
|
297
|
+
#### For Automation/CI-CD Pipelines
|
|
298
|
+
|
|
299
|
+
- Parameter migration: Replace `--output` with `--format` for test_generator.py
|
|
300
|
+
- New validation available: Use package_skill.py `--strict` flag for deployment gates
|
|
301
|
+
- All tools now fully standardized with `--format json` support
|
|
302
|
+
|
|
303
|
+
### Deprecations
|
|
304
|
+
|
|
305
|
+
- `test_generator.py --output`: Use `--format` instead (removal planned v2.0.0)
|
|
306
|
+
|
|
307
|
+
---
|
|
308
|
+
|
|
309
|
+
## [1.0.1] - 2025-11-11
|
|
310
|
+
|
|
311
|
+
### Added
|
|
312
|
+
|
|
313
|
+
#### JSON Output Standardization (Issue #1)
|
|
314
|
+
- **Shared utility module** (`scripts/utils/output_formatter.py`) for standardized JSON/text output
|
|
315
|
+
- **JSON support** for all 9 automation tools via `--format {text|json}` parameter
|
|
316
|
+
- **Standardized JSON schema** across all tools for consistency:
|
|
317
|
+
```json
|
|
318
|
+
{
|
|
319
|
+
"status": "success" | "error",
|
|
320
|
+
"tool": "tool_name",
|
|
321
|
+
"timestamp": "ISO-8601",
|
|
322
|
+
"data": { /* tool-specific results */ }
|
|
323
|
+
}
|
|
324
|
+
```
|
|
325
|
+
- **Error response standardization** with helpful messages and troubleshooting hints
|
|
326
|
+
|
|
327
|
+
#### Navigation & Documentation (Issue #5)
|
|
328
|
+
- **Knowledge base index** (`knowledge/INDEX.md`) - comprehensive navigation guide for all 22 knowledge files
|
|
329
|
+
- Organized by: Topic, Workflow Step, Use Case
|
|
330
|
+
- Quick keyword search (A-Z)
|
|
331
|
+
- Loading strategy recommendations (Quick/Standard/Complex)
|
|
332
|
+
- Maintenance notes for future updates
|
|
333
|
+
|
|
334
|
+
### Changed
|
|
335
|
+
|
|
336
|
+
#### Tool Parameter Standardization
|
|
337
|
+
- **token_estimator.py**: `--output` parameter renamed to `--format` (backward compatible)
|
|
338
|
+
- **split_skill.py**: `--output` parameter renamed to `--format` (backward compatible)
|
|
339
|
+
- **pattern_detector.py**: Added full JSON support via `--format` parameter
|
|
340
|
+
- Analysis mode: `--format json` for structured recommendations
|
|
341
|
+
- List mode: `--format json` for parseable pattern data
|
|
342
|
+
- Interactive mode: Text-only (JSON not applicable)
|
|
343
|
+
- **decision_helper.py**: Added `--format` parameter with modes:
|
|
344
|
+
- Default: `json` (agent-layer optimization)
|
|
345
|
+
- Optional: `text` (human-readable for debugging)
|
|
346
|
+
|
|
347
|
+
#### Documentation Updates
|
|
348
|
+
- **SKILL.md**: Updated Section 6 with current tool capabilities
|
|
349
|
+
- Removed outdated "Known Issues" section
|
|
350
|
+
- Added "Tool Output Standardization" section
|
|
351
|
+
- Updated all tool usage examples with `--format` parameter
|
|
352
|
+
- **knowledge/tools/15-cost-tools-guide.md**: Added JSON output documentation for token_estimator.py
|
|
353
|
+
- **knowledge/tools/17-pattern-tools-guide.md**: Added JSON support documentation for pattern_detector.py
|
|
354
|
+
- **knowledge/tools/18-decision-helper-guide.md**: Added text mode documentation for decision_helper.py
|
|
355
|
+
|
|
356
|
+
### Fixed
|
|
357
|
+
- **Inconsistent parameter names** across automation tools (all now use `--format`)
|
|
358
|
+
- **Missing JSON output** for pattern_detector.py and decision_helper.py
|
|
359
|
+
- **JSON parse errors** when piping tool output to `python -m json.tool`
|
|
360
|
+
- **Automation blockers** - tools now fully support CI/CD integration
|
|
361
|
+
|
|
362
|
+
### Testing
|
|
363
|
+
- All 9 tools validated with `python -m json.tool` for JSON correctness
|
|
364
|
+
- Backward compatibility verified - text mode still works as default
|
|
365
|
+
- Regression tests passed for existing tool functionality
|
|
366
|
+
|
|
367
|
+
---
|
|
368
|
+
|
|
369
|
+
## [1.0.0] - 2025-11-10
|
|
370
|
+
|
|
371
|
+
### Initial Release
|
|
372
|
+
|
|
373
|
+
#### Core Workflow
|
|
374
|
+
- 12-step skill creation workflow with validation gates
|
|
375
|
+
- Research-driven approach with web search integration
|
|
376
|
+
- Multi-proposal generation (3-5 options)
|
|
377
|
+
- Execution planning with P0/P1/P2 prioritization
|
|
378
|
+
- Token budget allocation and monitoring
|
|
379
|
+
|
|
380
|
+
#### Automation Scripts (9 tools)
|
|
381
|
+
1. **validate_skill.py** - Structure and YAML validation
|
|
382
|
+
2. **token_estimator.py** - Token consumption and cost estimation
|
|
383
|
+
3. **split_skill.py** - Progressive disclosure auto-splitting
|
|
384
|
+
4. **pattern_detector.py** - Workflow pattern recommendation
|
|
385
|
+
5. **decision_helper.py** - Skills vs Subagents decision tree
|
|
386
|
+
6. **security_scanner.py** - Security vulnerability detection
|
|
387
|
+
7. **test_generator.py** - Automated test generation
|
|
388
|
+
8. **quality_scorer.py** - 5-category quality scoring (100 points)
|
|
389
|
+
9. **migration_helper.py** - Document to skill conversion
|
|
390
|
+
|
|
391
|
+
#### Knowledge Base (22 files)
|
|
392
|
+
- **Foundation** (Files 01-08): Core concepts and decision frameworks
|
|
393
|
+
- **Application** (Files 09-13): Real-world implementation guidance
|
|
394
|
+
- **Tools** (Files 14-22): Automation script documentation
|
|
395
|
+
|
|
396
|
+
#### Quality Features
|
|
397
|
+
- Target quality score: 9.0+/10
|
|
398
|
+
- Security scanning for hardcoded secrets and dangerous patterns
|
|
399
|
+
- Token optimization with progressive disclosure
|
|
400
|
+
- Comprehensive validation with automated fixes
|
|
401
|
+
|
|
402
|
+
#### Integration
|
|
403
|
+
- Anthropic's production-tested init_skill.py and package_skill.py
|
|
404
|
+
- Web search for domain research (3-5 queries)
|
|
405
|
+
- On-demand knowledge file loading
|
|
406
|
+
- Structured workflows with checkpoints
|
|
407
|
+
|
|
408
|
+
---
|
|
409
|
+
|
|
410
|
+
## Version History Summary
|
|
411
|
+
|
|
412
|
+
| Version | Date | Key Changes |
|
|
413
|
+
|---------|------|-------------|
|
|
414
|
+
| **2.1.0** | 2026-03-13 | Full mode TDD behavioral protocol, deprecate pressure_tester.py |
|
|
415
|
+
| **2.0.1** | 2026-03-06 | Bug fixes: decision_helper, test_generator, pressure_tester stub warning |
|
|
416
|
+
| **2.0.0** | 2025-03-05 | Workflow modes (fast/full), behavioral testing, quality scoring v2 |
|
|
417
|
+
| **1.3.0** | 2025-02-06 | Subagent creation support, 10 tools, 23 knowledge files |
|
|
418
|
+
| **1.2.1** | 2025-11-14 | Bug fixes: imperative detection (11x improvement), confidence calculation, gitignore |
|
|
419
|
+
| **1.2.0** | 2025-11-13 | Quality assurance improvements, 81% of issues fixed, new utilities |
|
|
420
|
+
| **1.0.1** | 2025-11-11 | JSON standardization, navigation improvements |
|
|
421
|
+
| **1.0.0** | 2025-11-10 | Initial release with 12-step workflow, 9 tools, 22 knowledge files |
|
|
422
|
+
|
|
423
|
+
---
|
|
424
|
+
|
|
425
|
+
## Upgrade Guide
|
|
426
|
+
|
|
427
|
+
### From 1.0.0 to 1.0.1
|
|
428
|
+
|
|
429
|
+
#### Breaking Changes
|
|
430
|
+
**None** - This release is fully backward compatible.
|
|
431
|
+
|
|
432
|
+
#### Recommended Actions
|
|
433
|
+
1. **Update tool invocations** to use `--format` parameter:
|
|
434
|
+
```bash
|
|
435
|
+
# Old (still works)
|
|
436
|
+
python scripts/token_estimator.py skill-name/ --output json
|
|
437
|
+
|
|
438
|
+
# New (recommended)
|
|
439
|
+
python scripts/token_estimator.py skill-name/ --format json
|
|
440
|
+
```
|
|
441
|
+
|
|
442
|
+
2. **Use knowledge/INDEX.md** for faster file lookup:
|
|
443
|
+
- Quick topic search
|
|
444
|
+
- Workflow step mapping
|
|
445
|
+
- Use case examples
|
|
446
|
+
|
|
447
|
+
3. **Update automation scripts** to use standardized JSON output:
|
|
448
|
+
```bash
|
|
449
|
+
# Parseable JSON output
|
|
450
|
+
python scripts/pattern_detector.py "use case" --format json | python -m json.tool
|
|
451
|
+
```
|
|
452
|
+
|
|
453
|
+
#### Deprecations
|
|
454
|
+
- `--output` parameter (token_estimator.py, split_skill.py) - Use `--format` instead
|
|
455
|
+
- **Timeline**: Will be removed in v2.0.0 (6+ months)
|
|
456
|
+
- **Migration**: Simple rename, all functionality preserved
|
|
457
|
+
|
|
458
|
+
---
|
|
459
|
+
|
|
460
|
+
## Future Roadmap
|
|
461
|
+
|
|
462
|
+
### Planned for v1.1.0
|
|
463
|
+
- Issue #4: Workflow tiering (Express/Standard/Full modes)
|
|
464
|
+
- Improved quality scorer calibration
|
|
465
|
+
- Additional pattern templates
|
|
466
|
+
|
|
467
|
+
### Under Consideration
|
|
468
|
+
- GitHub Actions integration
|
|
469
|
+
- VS Code extension
|
|
470
|
+
- Interactive web UI for skill creation
|
|
471
|
+
|
|
472
|
+
---
|
|
473
|
+
|
|
474
|
+
## Contributing
|
|
475
|
+
|
|
476
|
+
Changes are tracked through:
|
|
477
|
+
- GitHub issues for feature requests and bugs
|
|
478
|
+
- Testing reports in `fixthis/` directory
|
|
479
|
+
- Version-controlled documentation updates
|
|
480
|
+
|
|
481
|
+
---
|
|
482
|
+
|
|
483
|
+
**Generated with:** Claude Skill Kit v2.1.0
|
|
484
|
+
**Last Updated:** 2026-03-14
|