tech-stack-skill-installer

Installs skills, agent personas, and stack rules from external catalogs into .opencode/.

Updated May 21, 2026
One-click install
npx skills add https://github.com/nicorevo/AI-SDLC-Template --skill tech-stack-skill-installer-nicorevo
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: tech-stack-skill-installer
Source: https://github.com/nicorevo/AI-SDLC-Template/tree/main/.opencode/skills/tech-stack-skill-installer
Command: npx skills add https://github.com/nicorevo/AI-SDLC-Template --skill tech-stack-skill-installer-nicorevo

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Manually finding, downloading, and wiring new AI skills and agent personas into a project is error-prone: files land in the wrong directory, frontmatter is invalid, and routing tables are forgotten. This Skill standardizes the discovery, validation, and registration of external skills and agents inside .opencode/. ## Core Features & Use Cases - Curated Catalog Discovery: Queries trusted sources (anthropics/skills, awesome-cursor-skills, opencode-agent-skills, cursor.directory) to find skills matching your tech stack or workflow gap. - Validated Installation: Fetches Markdown files via curl/gh/WebFetch, verifies YAML frontmatter with name and description, and places them in .opencode/skills/ or .opencode/agents/. - Intent Routing Registration: Updates the routing table in AGENTS.md so OpenCode and Copilot automatically trigger the newly installed capability. - Use Case: Onboarding a FastAPI project, you fetch framework-specific coding standards from cursor.directory, install them as stack-fastapi, and register the intent so every future coding task applies those conventions. ## Quick Start Ask the agent to find and install a skill for your stack, for example: install the smart-git-automation skill from the opencode-agent-skills catalog and register it in AGENTS.md.

Frequently Asked Questions about tech-stack-skill-installer

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I install a new skill into OpenCode from GitHub?▼

Fetch the SKILL.md file from a curated catalog using curl or the gh CLI, save it to .opencode/skills/<skill-name>/SKILL.md, then validate its YAML frontmatter contains name and description. Finally register it in the AGENTS.md intent routing table.

What skill catalogs can I search for AI agent skills?▼

Four curated sources are supported: anthropics/skills for standard workflows, spencerpauly/awesome-cursor-skills for execution patterns, mskadu/opencode-agent-skills for OpenCode utilities, and cursor.directory for framework-specific coding standards.

Do installed skills work with Claude, Cursor, and GitHub Copilot?▼

Yes, through optional compatibility symlinks defined in .opencode/linkToOthers.txt. The .claude, .github, .agents, and .cursor paths each point to .opencode, so other AI tools discover the same skill files without duplication.

Why is my newly installed skill not being triggered by the agent?▼

The most common cause is a missing entry in the AGENTS.md intent routing table. Also verify the file sits at .opencode/skills/<skill-name>/SKILL.md and that its frontmatter contains valid name and description fields.

Can I overwrite existing core skills when installing new ones?▼

No, core AI-SDLC skills such as spec-driven-development and test-driven-development must never be overwritten unless explicitly instructed. Always write to .opencode/ directly rather than through compatibility symlinks.