AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Openskill

skill-jhonejhee-openskill-openskill · by jhonejhee

Project-aware skill discovery and installer. ONLY trigger when the user explicitly types a message starting with /openskill — with or without a scope argument (e.g. "/openskill", "/openskill frontend", "/openskill backend"). Do NOT trigger for general questions about skills, installing tools, or project setup. Only the exact /openskill command invokes this skill.

No reviews yet
0 installs
30 views
0.0% view→install

Install

$ agentstack add skill-jhonejhee-openskill-openskill

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No 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.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-jhonejhee-openskill-openskill)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
6mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

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 →
Are you the author of Openskill? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

OpenSkill — Project-Aware Skill Discovery & Installer

A package-manager-style skill that reads your project, discovers relevant Claude skills from multiple sources, and installs them interactively.


Commands

| Command | Behavior | |---|---| | /openskill | Full interactive project scan + skill discovery + install | | /openskill frontend | Scope discovery to frontend/UI skills | | /openskill backend | Scope discovery to backend/API/server skills | | /openskill debug | Skills for debugging, error tracing, logging | | /openskill code-review | Skills for code quality, review, linting | | /openskill api | Skills for API design, REST, GraphQL, OpenAPI | | /openskill data | Skills for data pipelines, spreadsheets, analytics | | /openskill infra | Skills for DevOps, cloud, CI/CD, containers | | /openskill testing | Skills for testing, QA, coverage, e2e |


Workflow

Step 1 — Read the Project

When /openskill is invoked:

  1. Check for CLAUDE.md in the project root. Read it if present — it contains project context, stack, and existing skill references.
  2. Scan the codebase if no CLAUDE.md exists or to supplement it:
  • Look at package.json, pyproject.toml, Cargo.toml, go.mod, composer.json, etc. to detect stack and dependencies
  • Check for framework indicators: next.config.*, vite.config.*, tailwind.config.*, Dockerfile, .github/workflows/, etc.
  • Note the primary languages, frameworks, and tooling in use
  1. Detect the scope from the command argument (e.g., /openskill frontend → focus on frontend-relevant skills). If no scope given, infer from the full project read.

Summarize what you found in 2–3 sentences before proceeding.


Step 2 — Discover Skills

Search for relevant skills across three tiers in order:

Tier 1: Local Skills (check first)

First detect the environment: if /mnt/skills/ exists, you're in Claude.ai. Otherwise assume Claude Code.

Claude.ai — scan these paths:

  • /mnt/skills/user/ — user-installed skills
  • /mnt/skills/public/ — built-in public skills
  • /mnt/skills/examples/ — example skills

Claude Code — scan these paths:

  • ~/.claude/skills/ — user-installed skills
  • .claude/skills/ — project-scoped skills (relative to project root)

For each skill found, read only its YAML frontmatter (name + description). Do not load full SKILL.md bodies — just names and descriptions are enough for matching.

Tier 2: Community GitHub (top starred repos)

Search GitHub for highly starred skill repositories. Good queries:

  • claude skills topic:claude-skill
  • SKILL.md claude anthropic
  • claude-skills-registry

Reference references/github-search.md for how to evaluate and surface community skills.

Tier 3: Official Anthropic Skills

Check the official Anthropic skills repository if one exists. Search for anthropic/claude-skills or similar official registry. Reference references/official-registry.md for guidance.

Cross-check: After collecting candidates from all tiers, deduplicate by name. If a skill exists locally, prefer the local version — no need to suggest reinstalling it.


Step 3 — Match & Recommend

Match discovered skills to the project's stack and the requested scope. Present recommendations separated by source tier:

📦 Recommended Skills for [Project Name / Scope]

✅ Already installed:
  - [skill-name] — [one-line description]

📁 Local (built-in):
  1. [skill-name] — [one-line description]
  2. [skill-name] — [one-line description]

🌐 Community:
  1. [skill-name] (⭐ 342) — [one-line description]
  2. [skill-name] (⭐ 128) — [one-line description]

🏢 Official:
  1. [skill-name] — [one-line description]
  2. [skill-name] — [one-line description]

❓ Possibly relevant (lower confidence):
  - [skill-name] — [one-line description]

Max 5 per tier. Skip a tier entirely if nothing relevant is found — don't show empty sections.


Step 4 — Interactive Install

Ask the user which skills they want to install. Then ask:

> "Install as user-scope (available in all your projects) or project-scope (this project only)?"

| Scope | Claude.ai | Claude Code | |---|---|---| | User-scope | /mnt/skills/user/[skill-name]/ | ~/.claude/skills/[skill-name]/ | | Project-scope | .claude/skills/[skill-name]/ | .claude/skills/[skill-name]/ |

Detect the environment first: check if /mnt/skills/ exists — if yes, you're in Claude.ai. Otherwise assume Claude Code and use ~/.claude/skills/.

For each selected skill:

  1. Copy or fetch the skill files to the chosen path
  2. Confirm installation with: ✅ [skill-name] installed to [path]
  3. If the skill has bundled resources (scripts/, references/, assets/), copy them too

After install, tell the user: "These skills will be available the next time Claude reads your project context."


Step 5 — Update CLAUDE.md (optional)

Offer to update or create the project's CLAUDE.md with a skills section:

## Installed Skills
- [skill-name]: [description]

Ask before writing. If the user says yes, append cleanly without overwriting existing content.


Scope Behavior

When a scope argument is passed (e.g., /openskill frontend), skip Step 1's full codebase scan. Instead:

  • Use the scope as the primary filter for discovery
  • Still check the project root for CLAUDE.md to get stack context
  • Focus Tier 1/2/3 searches on that domain

Scope → keyword mapping:

  • frontend → React, Vue, Svelte, CSS, Tailwind, UI, components, design systems
  • backend → Node, Python, Go, Rust, Express, FastAPI, Django, databases, auth
  • debug → logging, tracing, error handling, stack traces, breakpoints
  • code-review → linting, formatting, best practices, refactoring, PR review
  • api → REST, GraphQL, OpenAPI, Swagger, Postman, endpoints
  • data → pandas, SQL, ETL, spreadsheets, analytics, charts
  • infra → Docker, Kubernetes, Terraform, CI/CD, AWS, GCP, Azure
  • testing → Jest, Pytest, Playwright, Cypress, unit/integration/e2e tests

Tone & UX

  • Be concise. This is a CLI-style interaction — users expect fast, scannable output.
  • Use emojis sparingly for status (✅ installed, 🆕 new, ❓ maybe, ⭐ community stars).
  • Don't ask unnecessary clarifying questions. Read first, ask only if genuinely ambiguous.
  • If nothing relevant is found, say so plainly and suggest the user try a different scope or check back later.

Reference Files

  • references/github-search.md — How to find and evaluate community skills on GitHub
  • references/official-registry.md — How to check the official Anthropic skills registry
  • references/install-guide.md — Detailed install path logic and edge cases

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.