Back to skills
SkillHub ClubShip Full StackFull Stack
s
Imported from https://github.com/majiayu000/claude-skill-registry.
Packaged view
This page reorganizes the original catalog entry around fit, installability, and workflow context first. The original raw source lives below.
Stars
126
Hot score
95
Updated
March 20, 2026
Overall rating
C2.8
Composite score
2.8
Best-practice grade
D40.0
Install command
npx @skill-hub/cli install majiayu000-claude-skill-registry-s
Repository
majiayu000/claude-skill-registry
Skill path: skills/data/s
Imported from https://github.com/majiayu000/claude-skill-registry.
Open repositoryBest for
Primary workflow: Ship Full Stack.
Technical facets: Full Stack.
Target audience: everyone.
License: Unknown.
Original source
Catalog source: SkillHub Club.
Repository owner: majiayu000.
This is still a mirrored public skill entry. Review the repository before installing into production workflows.
What it helps with
- Install s into Claude Code, Codex CLI, Gemini CLI, or OpenCode workflows
- Review https://github.com/majiayu000/claude-skill-registry before adding s to shared team environments
- Use s for development workflows
Works across
Claude CodeCodex CLIGemini CLIOpenCode
Favorites: 0.
Sub-skills: 0.
Aggregator: No.
Original source / Raw SKILL.md
--- name: s description: Discover available skills and subagents. Auto-triggers on: /s, show skills, list skills, available skills, what can you do, help with skills, what agents, list agents allowed-tools: Bash, Read --- # Skill Discovery Dynamically discover all available skills and subagent types. ## Usage Run the discovery script to list all skills: ```bash python3 .claude/skills/s/scripts/discover.py ``` ## Subagent Types Subagents are spawned via the **Task tool**. Available types are defined in the Task tool's system description. To see current subagent types, check the `subagent_type` parameter in your Task tool definition. Common subagent types include: - **Explore** - Fast codebase exploration, file finding, searches - **general-purpose** - Complex multi-step tasks, research - **Bash** - Git operations, command execution - **Plan** - Architecture decisions, implementation planning Note: Subagent types are defined by the Task tool, not this skill. Check your tool definitions for the authoritative list. ## How Skills Work Skills live in `.claude/skills/<name>/SKILL.md` with YAML frontmatter: ```yaml --- name: skill-name description: What it does AND when to trigger (keywords here!) allowed-tools: Read, Edit, Write, Task --- ``` - **Triggering**: Skills auto-trigger based on keywords in their `description` field - **Invocation**: Use `/<skill-name>` or natural language matching trigger keywords - **Tools**: Each skill declares what tools it can use in `allowed-tools` ## Adding New Skills Use the skill-creator skill: `/skill-creator <description>`