From prism-devtools
Create and manage project-level skills shared via git. Skills with prism: metadata are auto-discovered and injected into every PRISM workflow step. Use when teams need project-specific skills available to all agents throughout the workflow.
npx claudepluginhub resolve-io/.prismThis skill uses the workspace's default tool permissions.
- Creating a new team/project skill that will be shared via git
Enables AI agents to execute x402 payments with per-task budgets, spending controls, and non-custodial wallets via MCP tools. Use when agents pay for APIs, services, or other agents.
Provides patterns for autonomous Claude Code loops: sequential pipelines, agentic REPLs, PR cycles, de-sloppify cleanups, and RFC-driven multi-agent DAGs. For continuous dev workflows without intervention.
Applies NestJS patterns for modules, controllers, providers, DTO validation, guards, interceptors, config, and production TypeScript backends with project structure and bootstrap examples.
Project skills live at .claude/skills/{skill-name}/SKILL.md. Claude Code discovers them automatically - no registration, sync, or hooks required. They take precedence over user-level and plugin skills.
Skills opt into PRISM discovery via prism: frontmatter metadata. All skills with a prism: block are injected into every workflow step for every agent. The agent field is optional — it serves as informational metadata about which agent the skill was designed for, not as a filter.
---
name: my-team-skill
description: What this skill does
prism:
agent: dev # optional: sm | dev | qa | architect (informational hint)
priority: 10 # lower = higher priority (default: 99)
---
At runtime, discover_prism_skills() scans .claude/skills/*/SKILL.md and injects all discovered skills into every workflow step in priority order. Agents are instructed to ALWAYS prefer using an available skill over solving without one.
/byos scaffold my-skill --agent dev
Creates .claude/skills/my-skill/ with a pre-filled SKILL.md and /reference/ directory.
/byos validate my-skill
Checks structure, frontmatter, prism: metadata, and token budget.
/byos list
Shows all project-level skills with their agent assignments.
.md files MUST go in /reference/ - never in the skill rootsm, dev, qa, architect.md file allowed in the skill root/skill-builder