Skillshub Agent Skills Architecture
Foundational "High-Density" standard for token-optimized agent instructions and CLI-based automated activation.
install
source · Clone the upstream repo
git clone https://github.com/ComeOnOliver/skillshub
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/ComeOnOliver/skillshub "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/HoangNguyen0403/agent-skills-standard/agent-skills-architecture" ~/.claude/skills/comeonoliver-skillshub-agent-skills-architecture && rm -rf "$T"
manifest:
skills/HoangNguyen0403/agent-skills-standard/agent-skills-architecture/SKILL.mdsource content
Agent Skills Architecture Standard
Priority: P0 (CRITICAL)
The primary goal is Maximum Information Density and Automated Precision.
🏗️ Core Architectural Pillars
1. Separation by Package (Granularity)
- Rule: Separate skills based on specific library/framework dependencies.
- Goal: Avoid context pollution. Don't load "Riverpod" instructions into a "BLoC" project.
- Example:
vsflutter/bloc-state-management
.flutter/riverpod-state-management
2. Presence = Active (Simplified Configuration)
- Logic: If a skill is listed in
, it is considered active..skillsrc - Standard: Remove legacy
flags. Control activation via inclusion/exclusion lists.enabled
3. CLI Detection & Dynamic Exclusion
- Mechanism: The CLI (
) mapsags
/package.json
dependencies to skill IDs.pubspec.yaml - Exclusion: Irrelevant sub-skills are automatically added to the
list during initialization if their corresponding packages are missing.exclude
4. Progressive Disclosure (Three-Level Loading)
- Level 1 (Metadata): Triggers activation via high-precision keywords/files.
- Level 2 (SKILL.md Body): Core imperative logic (<100 lines). No conversational fluff.
- Level 3 (References): Detailed examples, complex patterns, scripts. Lazy-loaded on-demand.
📦 ID & Naming Standards
- Category: Lowercase letters (e.g.,
,flutter
).nestjs - Skill ID: Kebab-case, must match the directory name.
- Registry ID: Must match the Skill ID for automated CLI detection/exclusion.
📋 High-Density Writing Style
- Imperative Mood: Use "Use X", "Avoid Y". No "Please" or "You should".
- Token Compression: Skip articles ("the", "a") where possible. Use bullet points > paragraphs.
- Anti-Patterns: Avoid conversational intros ("In this skill, we see...").
🔗 Internal References
- Skill Creator Standard - Detailed authoring rules.
- Resource Organization - Folder structure best practices.