Install
$ agentstack add skill-agricidaniel-skill-forge-skill-forge-convert ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
Skill Conversion — Multi-Platform
Convert Claude Code skills to work on OpenAI Codex, Google Gemini CLI, Google Antigravity, and Cursor while maintaining quality and following each platform's best practices.
Process
Step 1: Read Source Skill
- Read the source
SKILL.mdand parse frontmatter - Detect skill complexity tier (1-4)
- Inventory all files: scripts/, references/, agents/, sub-skills
- Identify MCP config (
.mcp.json) if present
Step 2: Analyze Platform Compatibility
Run dry-run analysis first:
python scripts/convert_skill.py --dry-run --target all
Review the compatibility report:
- Portable fields: Transfer directly (name, description, license)
- Adaptable fields: Need platform-specific handling
- Claude-only fields: Will be stripped with warnings
Step 3: Convert to Target Platforms
Run the conversion:
python scripts/convert_skill.py --target codex,gemini,antigravity,cursor --output dist/
For MCP config conversion:
python scripts/convert_skill.py --target all --output dist/ --include-mcp
Step 4: Handle Claude-Only Features
Features that need manual adaptation per platform:
| Claude Feature | Codex | Gemini/Antigravity | Cursor | |---------------|-------|-------------------|--------| | allowed-tools | Supported | Remove; all tools available | Remove; no equivalent | | context: fork | No equivalent | No equivalent | No equivalent | | hooks | 1 event (notify) | Partial (CLI) | 6 events (beta) | | model selection | No equivalent | No equivalent | No equivalent | | Task delegation | Break into separate skills | Break into separate skills | Background Agents (Ultra plan) | | /slash commands | $mention syntax | Description-based activation | Description-based + @rule | | Sub-skill routing | Separate skills with $mention | Separate skills, LLM-routed | Separate skills, LLM-routed |
Step 5: Validate Converted Skills
Run validation on each generated output:
python scripts/validate_skill.py dist/codex//
python scripts/validate_skill.py dist/gemini//
python scripts/validate_skill.py dist/antigravity//
python scripts/validate_skill.py dist/cursor//
Fix any critical or high-priority issues before proceeding.
Step 6: Generate Deployment Report
Present the user with a summary:
## Conversion Report: {skill-name}
| Platform | Score | Files | Warnings | Manual Steps |
|----------|-------|-------|----------|-------------|
| Codex | 92% | 4 | 2 | 1 |
| Gemini | 88% | 3 | 3 | 1 |
| Antigravity | 88% | 3 | 3 | 1 |
| Cursor | 88% | 3 | 3 | 1 |
### Generated Files
[list per platform]
### Warnings
[list per platform]
### Manual Steps Required
[list per platform]
Step 7: Generate Multi-Platform Install Script
When converting for all platforms (--target all), the script auto-generates install-multiplatform.sh that:
- Auto-detects the current agent platform
- Installs to the correct skill path
- Supports
--platformflag for explicit selection
Platform Quick Reference
| Platform | Skill Path | Instruction File | Config Format | |----------|-----------|-----------------|---------------| | Claude Code | .claude/skills/ | CLAUDE.md | JSON (.mcp.json) | | OpenAI Codex | .agents/skills/ | AGENTS.md | TOML (config.toml) | | Gemini CLI | .gemini/skills/ | GEMINI.md | JSON (settings.json) | | Antigravity | .agent/skills/ | GEMINI.md | JSON (mcp_config.json) | | Cursor | .cursor/skills/ | .cursor/rules/*.mdc | JSON (mcp.json) |
For full platform specs, load references/platforms.md.
Tier Conversion Guidelines
- Tier 1 (single SKILL.md): Converts cleanly. Auto-convert recommended.
- Tier 2 (skill + scripts): Converts well. Verify script paths.
- Tier 3 (multi-skill): Partial. Each sub-skill converts independently. Routing needs manual work.
- Tier 4 (ecosystem): Manual review required. Subagent delegation needs platform adaptation.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: AgriciDaniel
- Source: AgriciDaniel/skill-forge
- License: MIT
- Homepage: https://agricidaniel.com
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.