Commit graph

9 commits

Author SHA1 Message Date
Francy Lisboa Charuto
0e80457578 feat: Phase 5 harness patterns — every skill gets validation, prereqs, diagnostics
pipeline-phases.md Step 7b (new): mandatory harness patterns
- Self-bootstrapping wrappers (bash + PowerShell)
- Input validation with structured JSON errors
- Output sanity checks with _warnings
- --check-prereqs returning JSON health check
- --diagnostics returning skill metadata
- activation: /{skill-name} in frontmatter
- provenance: block (full from cliskill, minimal standalone)
- ## Prerequisites section in SKILL.md body
- Anti-activation in anti-goals

Phase 5 Checklist: 10 new items for harness compliance

validate.py: warnings for missing activation and provenance fields
(warnings not errors — backward compatible with existing skills)
2026-03-26 07:29:51 -03:00
Francy Lisboa Charuto
3fc735eeae feat: Add brain-dead multi-tool install scripts (bootstrap, symlink installer, universal skill installer)
- scripts/bootstrap.sh: curl-pipe-sh one-liner that clones to ~/.agents/skills/ and symlinks to all detected global platforms
- install.sh: symlink self-installer for cloned repos with --dry-run and --uninstall
- scripts/install-skill.sh: universal installer for any skill (git URL or local path) to all detected platforms with format adapters
- SKILL.md: add silent git-based update check instruction
- README.md: document all new install options and update project structure
- .gitignore: add *.mdc for generated adapter files

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-04 10:08:20 -03:00
Francy Lisboa Charuto
afcae83970 fix: Make installer idempotent by cleaning INSTALL_DIR before copying
Removes the destination directory before each install so stale files
from prior versions are not left behind.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-04 09:35:11 -03:00
Francy Lisboa Charuto
80f60c5380 feat: Universal cross-tool skill installation (14 platforms, format adapters, .agents/skills/)
- Fix install-template.sh POSIX compliance (set -eu, no bashisms, dash-tested)
- Fix incorrect paths: Windsurf → .windsurf/rules/, Codex → ~/.agents/skills/
- Add 7 new platforms: universal, kiro, trae, goose, opencode, roo-code, antigravity
- Add format adapters: auto-generate .mdc (Cursor), .md rules (Windsurf), plain .md (Cline/Roo/Trae)
- Add ~/.agents/skills/ universal secondary symlink after every install
- Add --all flag to install to every detected tool at once
- Add 3-tier platform support in cross-platform-guide.md (Native/Adapter/Manual)
- Update all 6 files with consistent paths across 14 platforms
- Fix set -e safety: replace ||/&& chaining with if/then/fi in detect_all_platforms
- Fix awk idempotency: exact marker match prevents substring collision

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-04 08:51:11 -03:00
francylisboacharuto
cb66ad17cc feat: Add skill staleness detection (review tracking, dependency health, schema drift)
Skills go stale as APIs change and data sources move. This adds a three-layer
staleness detection system: review date tracking with git fallback, HTTP health
checks for declared dependencies, and top-level key comparison for schema drift.
All new frontmatter fields are optional — existing skills work unchanged.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-27 09:09:48 -03:00
francylisboacharuto
1154b1d6ab feat: -skill suffix convention, team sharing via GitHub/GitLab
Skills now require -skill suffix for org-wide discoverability (teams
search *-skill to find all skills). Suites use -suite suffix.

Post-creation sharing flow: agent detects gh/glab CLI, creates repo,
adds agent-skill topic, gives shareable one-liner for Slack/Teams.
Supports GitHub, GitLab, Enterprise, and self-hosted instances.

Updated validate.py to warn on missing -skill suffix and error on
deprecated -cskill suffix. Updated architecture-guide.md naming
section to match.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-27 04:21:41 -03:00
francylisboacharuto
736bbda78a feat: Add git-based shared skill registry for team skill management
Adds skill_registry.py CLI tool with 7 subcommands (init, publish, list,
search, install, info, remove) for managing a git-friendly shared skill
catalog. No new dependencies — stdlib only. Integrates with existing
validate.py and security_scan.py for publish-time checks.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-26 15:52:19 -03:00
francylisboacharuto
bac2b27bb8 feat: v4.0 Cross-Platform Modernization — Agent Skills Open Standard compliance
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>
2026-02-26 14:52:09 -03:00
Francy Lisboa
191c3a68fd feat: Add v3.2 Cross-Platform Export System
Enables skills created in Claude Code to be exported for use across all
Claude platforms (Desktop, Web, and API). Users can now share skills with
non-Code users and deploy to production via API.

Key features:
- Opt-in export workflow with Desktop and API variants
- Automatic validation (structure, size, security)
- Version detection from git tags or SKILL.md
- Auto-generated installation guides
- Comprehensive documentation

This makes agent-skill-creator skills truly universal and portable.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-10-24 15:26:14 -03:00