一键导入
Brief description of what the skill does
npx skills add https://github.com/NavanithanS/Agent-Skill-Kit --skill ask-code-reviewer复制此命令并粘贴到 Claude Code 中以安装该技能
Brief description of what the skill does
npx skills add https://github.com/NavanithanS/Agent-Skill-Kit --skill ask-code-reviewer复制此命令并粘贴到 Claude Code 中以安装该技能
Laravel scaffolding for SQL or Mongo (Official/Jenssegers), SoftDeletes, API standards.
Laravel maintenance with Zero Data Loss policy, Mongo/SQL debugging.
Vue 3 scaffolding for Laravel Inertia, Nuxt, or Vite. Composition API + TypeScript.
Vue 3 + Inertia maintenance. Fixes navigation reloads, prop mismatches, reactivity loss.
Guidelines for impact analysis, breaking change detection, and strategic database design.
Code review, staging, and Conventional Commit message generation. MUST NOT COMMIT.
| title | Skill |
| type | entity |
| tags | ["skill","library","yaml","SKILL.md","frontmatter"] |
| updated | "2026-04-06T00:00:00.000Z" |
| sources | 4 |
A skill is the core unit of ASK — a reusable, versioned instruction set for an AI agent. Skills live in the central library and can be deployed to one or more agents.
skills/<category>/<skill-name>/
├── skill.yaml # Machine-readable metadata
├── SKILL.md # Human+LLM instruction file
├── scripts/ # Helper scripts (required for validation gate)
└── tests/ # Tests (required for validation gate)
name: ask-code-reviewer
version: 1.2.0
agents: [claude, gemini] # which agents this targets
depends_on: [] # other skill names (resolved by SkillRegistry)
---
name: ask-code-reviewer
description: Brief description of what the skill does
triggers: ["review my code", "check this PR"]
---
# Skill content here...
ask- by convention.ask/utils/validators.py.| Category | Purpose |
|---|---|
coding/ | Language/framework-specific dev skills |
planning/ | Architecture, ADRs, project management |
tooling/ | Meta-skills (skill creation, context, auditing) |
workflows/ | Multi-step process skills |
skill.yaml + SKILL.md.ask validate checks structure; ask skill lint checks token limits.ask copy <skill> deploys to an agent via the appropriate adapter.version in skill.yaml; ask copy detects version delta.SkillRegistry resolves depends_on chains with cycle detection. A skill won't install unless its dependencies are satisfied.
ask/utils/token_analyzer.py enforces per-skill-type token limits via tiktoken. ask skill lint surfaces violations.
See skills-catalog.md for all available skills.