The portable SDLC standards layer for AI coding agents. Sync once, then work in your own runtime.
$ npx -y skills add hoangnguyen0403/agent-skills-standard --agent claude-code
Run the curl in your terminal, the rest in Claude Code.
Repo: hoangnguyen0403/agent-skills-standard
What's inside
The portable SDLC standards layer for AI coding agents. Sync once, then work in your own runtime.
Current release: v2.5.1 โ trust-gated review workflows, markdown-first security handoff, expanded framework/database guidance, and a new Python backend skill pack for SDLC delivery.
280 ready-to-use coding standards for Cursor, Claude Code, GitHub Copilot, Gemini, Windsurf, Trae, Kiro, Roo and more โ synced, versioned, and optimized to use 85% fewer tokens than traditional prompt engineering.
npx agent-skills-standard@latest init
npx agent-skills-standard@latest sync
# Done. Your AI now has portable team standards and SDLC workflows.
If ags -V still shows an old version after reinstalling, check your PATH order. ~/Library/pnpm must come before ~/Library/pnpm/bin, then run hash -r and verify with ags -V again.
Not an engineer? You don't need to run any of the above โ just describe your idea to your AI agent. See Getting Started: Product Owner.
Every team has coding standards. But AI agents don't know them.
You end up repeating the same instructions: "Use OnPush change detection", "Always wrap errors with context", "No business logic in handlers". And every time, you face the same trade-off:
.cursorrules = out of date in a week, doesn't scale to teamsAgent Skills Standard turns your engineering rules into modular, version-controlled skills that any AI agent can load on demand.
| Without Skills | With Skills |
|---|---|
| 3,600+ token architect prompt in every chat | ~500 token skill, loaded only when relevant |
| Rules drift across team members' prompts | Single source of truth, synced via CLI |
| Works in one AI tool, copy-paste to others | Works in Cursor, Claude, Copilot, Gemini, Windsurf, Trae, Kiro, Roo |
| AI scans all rules every time (slow, lossy) | Hierarchical lookup: ~25 lines scanned per edit |
Agent Skills Standard does not force you into a new daily command system. ags is for setup, sync, validation, MCP wiring, and updates. After sync, your AI tool receives native assets:
You keep the files in your repo, customize them with .skillsrc and custom_overrides, and run workflows inside the agent you already use.
You run: npx agent-skills-standard sync
What your AI gets:
1. AGENTS.md (router ~20 lines)
"Editing *.ts? Check typescript/_INDEX.md"
2. typescript/_INDEX.md (trigger table)
File Match: typescript-language *.ts, *.tsx, tsconfig.json
Keyword: typescript-security validate, sanitize, auth
3. typescript-language/SKILL.md (loaded on demand)
The actual rules โ only when needed.
The AI loads only the skills that match the file being edited and the task at hand. No wasted tokens. No forgotten rules.
This project follows a Zero-Trust architectural model inspired by Rust Token Killer (RTK). Instead of injecting all rules into every prompt (which can cost 5,000+ tokens and cause "prompt loss"), we use a hierarchical loading system.
Detailed documentation is available in ARCHITECTURE.md, covering:
AGENTS.md) -> Category Index (_INDEX.md) -> Skill (SKILL.md).Detects your tech stack and creates a .skillsrc config:
npx agent-skills-standard@latest init
Downloads skills into your AI agent's folders and generates the index:
npx agent-skills-standard@latest sync
Your AI agent now reads AGENTS.md automatically. Skills activate based on what file you're editing and what you ask for.
Works instantly with Cursor, Claude Code, GitHub Copilot, Gemini CLI, Windsurf, Trae, Kiro, and Roo. No plugin or extension needed โ the CLI generates each agent's native format.
The CLI distributes skills to disk. The companion MCP server serves them to your AI agent at runtime as explicit tool calls โ closing the gap where agents read AGENTS.md but forget to load matched SKILL.md files (especially in sub-agents).
init and sync ask once whether to enable MCP and at what scope. Three choices, recommended in bold:
| Scope | What gets written | Touches $HOME? |
|---|---|---|
project (recommended) | ./mcp-config-snippets/*.json + project-scoped runtime configs (./.mcp.json, ./.cursor/mcp.json, etc.) | โ No |
user | All of project + user-home configs (~/.cursor/mcp.json, ~/.gemini/settings.json) | โ ๏ธ Yes โ sync prompts before each user-scope write |
snippets-only | Only ./mcp-config-snippets/*.json โ never edits any runtime config | โ No |
disabled | Nothing MCP-related | โ No |
The CLI never reads or modifies user-home files unless you explicitly choose user scope AND confirm each write. All decisions are recorded in .skillsrc so you're not re-prompted on every sync.
mcp subcommandags mcp status # Show enabled, scope, and per-agent install state
ags mcp enable # Turn on (uses configured scope)
ags mcp disable # Turn off (existing entries kept; use uninstall to clean)
ags mcp scope project # Change scope: project | user | snippets-only | disabled
ags mcp install # One-shot install at the configured scope
ags mcp uninstall --from=all # Remove our entry from project + user configs
ags mcp snippets # Regenerate ./mcp-config-snippets/ without touching configs
Or edit .skillsrc directly:
mcp:
enabled: true
scope: project # project | user | snippets-only | disabled
prompted: true # set to false to be re-asked next sync
Add to your runtime's MCP config:
{
"mcpServers": {
"agent-skills-standard": {
"command": "npx",
"args": ["-y", "agent-skills-standard-mcp"],
},
},
}
Now any sub-agent in any runtime can call load_skills_for_files, audit_session_compliance, etc. Works in Claude Code, Cursor, Antigravity, Kiro, Continue, Gemini CLI โ anywhere MCP is supported. Full setup: mcp/README.md.
| Layer | Tool | Runs when | Purpose |
|---|---|---|---|
| Distribution | agent-skills-standard (CLI) | Manually, before AI session | Fetches & writes SKILL.md files; generates AGENTS.md + _INDEX.md |
| Runtime / Enforcement | agent-skills-standard-mcp (MCP) | Auto-launched by the AI runtime | Serves matched SKILL.md to live agents on demand; provides audit log |
Use both when you want enforcement receipts: the CLI installs the rules, the MCP makes sure agents load them.
The registry now ships a compact lifecycle that agents can run natively after sync:
| Stage | Synced Workflow | Output |
|---|---|---|
| Route | sdlc | next workflow and blockers |
| Brainstorm | brainstorm-feature | product-brief.md |
| Plan | plan-feature | PRD, decisions, task slices |
| Design | design-solution | architecture, contracts, ADR |
| Readiness | implementation-readiness | go/no-go before code |
| Build | implement-feature / dev-fix | implementation handoff |
| Review | review-ticket | multi-lens PR/ticket verdict |
| Verify | verify-work / verify-bug | walkthrough.md evidence |
| Security | pentest / security-test | hacker report, PoC, SAST logs |
The registry now includes the common-telemetry skill and a companion MCP tool get_session_cost(). At the end of every workflow, the agent can now report MCP-observed session telemetry plus exact-or-estimated token cost when the host runtime supplies usage and pricing data.
See SDLC Workflow Quick Reference.
ags init includes framework skills plus shared SDLC support categories when the registry provides them:
| Surface | How It Syncs |
|---|---|
quality-engineering | Included as a skill category for BA review, Jira traceability, QA standards, browser/mobile verification, and Zephyr coverage |
specialists | Converted directly into native sub-agent files for Jira analysis, codebase scouting, architecture/security review, AC verification, test gaps, PR metadata, Zephyr/Confluence lookup, PR comments, integration tests, and TC creation |
External tasking MCPs such as Jira, Azure DevOps, and Zephyr are integration points, not required dependencies. Workflows should use them when already connected, but every workflow must still work from local tickets, specs, and evidence files so teams can customize their own automation stack.
For security-sensitive autonomous review, prefer a sandboxed runtime with least-privilege tools, isolated credentials, and default-deny outbound network. That aligns with the safety direction shown by NVIDIA OpenShell's policy-enforced sandboxes and Anthropic's warning that PR security review should stay on trusted inputs unless the runtime is hardened.
For review workflows specifically, the next-tier operating model is:
In practice that means:
code-review and review-ticket can emit review-delivery.md as the sanitized packet for channel handoff or approved PR comment publicationcodebase-review.md separately from security-review.md so engineering health and exploitability stay distinctFor repository enforcement, keep the workflows and skills lean: the source of truth lives in skills/ and .agents/workflows/, not in MCP-only artifact helpers, fixture packs, or replay chains.
See also Learning From agentic-ai and the Optional MCP Integration Guide.
Every skill is audited for token efficiency (averaging ~500 tokens) and tested with automated evals.
| Stack | Key Skills | Version | Skills |
|---|---|---|---|
| Common Patterns | Best Practices, Security, TDD, Error Handling | v2.2.1 | 38 |
| Flutter | BLoC, Riverpod, Architecture, Concurrency | v1.7.1 | 22 |
| React | Hooks, Performance, State Management | v1.3.6 | 8 |
| React Native | Architecture, Navigation, Performance | v1.4.4 | 13 |
| Next.js | App Router, Server Components, Caching, ISR | v1.4.5 | 18 |
| Angular | Signals, Components, RxJS, SSR | v1.4.2 | 15 |
| NestJS | Architecture, Security, BullMQ | v1.4.5 | 21 |
| TypeScript | Type Safety, Security, Tooling | v1.3.3 | 4 |
| JavaScript | ES2024+, Patterns, Tooling | v1.3.4 | 3 |
| Go (Golang) | Clean Arch, Concurrency | v1.3.5 | 11 |
| Python | Clean Arch, Async, Testing, Security | v1.0.0 | 9 |
| Spring Boot | Architecture, Security, JPA | v1.3.3 | 10 |
| Android | Compose, Navigation 3, Edge-to-Edge, AGP 9 | v1.4.1 | 26 |
| iOS | SwiftUI, Arch, Persistence | v1.4.5 | 15 |
| Swift | Concurrency, Memory | v1.3.5 | 8 |
| Kotlin | Coroutines, Language | v1.3.3 | 4 |
| Java | Records, Virtual Threads | v1.3.3 | 5 |
| PHP | PHP 8.4+, Error Handling | v1.3.5 | 7 |
| Laravel | Eloquent, Clean Arch | v1.3.4 | 10 |
| Dart | Null Safety, Sealed Classes | v1.3.5 | 3 |
| Database | PostgreSQL, MongoDB, Redis, Migrations | v1.3.5 | 7 |
| Quality Engineer | BA, TDD, Zephyr, Test Gen | v1.5.0 | 7 |
| Specialists | Jira, Review, QA, Security, Zephyr, Confluence | v1.1.3 | 16 |
Full skill list with token metrics: Skills Directory | Benchmark Report | Public Proof
The .skillsrc file controls what gets synced:
registry: https://github.com/HoangNguyen0403/agent-skills-standard
agents: [cursor, copilot, claude, gemini]
# Standard registry skills
skills:
flutter:
ref: flutter-v1.6.3
exclude: ["getx-navigation"] # Don't use GetX? Exclude it.
custom_overrides: ["bloc-state"] # Protect your local modifications.
react:
ref: react-v1.3.3
golang:
ref: golang-v1.3.2
common:
ref: common-v2.0.3
# Local custom standalone skills
custom_skills:
- path: "./.skills/my-custom-rule.md"
triggers: ["*.ts", "keyword"]
Skills are package-aware: if your Flutter project uses BLoC but not GetX, just exclude the GetX skills. The AI only sees what's relevant to your stack. The custom_skills feature allows you to index your own .md files directly into AGENTS.md and _INDEX.md, ensuring your project-specific rules are always visible to the AI.
workflows:
- sdlc
- brainstorm-feature
- plan-feature
- design-solution
- implement-feature
- verify-work
- pentest
- security-test
- deploy-release
- publish-notes
- retro-learn
Workflows sync to the native surface for each selected agent. Keep .agents/workflows as the canonical source in this registry; Codex receives generated workflow skills under .codex/skills/<workflow>/SKILL.md.
Every AI agent follows the same hierarchical lookup โ no agent-specific setup needed:
AGENTS.md (compact router, ~20 lines)
|
| "Editing *.go? Read golang/_INDEX.md"
v
_INDEX.md (per-category trigger table)
|
| File Match: golang-database internal/adapter/repository/**
| Keyword: golang-security encrypt, auth, validate
v
SKILL.md (loaded on demand, ~500 tokens)
|
| The actual engineering rules
v
Your AI writes code that follows your standards.
File Match = auto-checked when you edit a matching file. Keyword Match = checked only when your prompt mentions the concept.
This means editing a .ts file loads 6 relevant skills instead of 27 โ no confusion, no token waste.
Picture a developer in Cursor or Claude Code asking:
"Add a POST /orders endpoint that validates the body and returns 201."
Here's what happens with the MCP, step by step.
src/orders/orders.controller.ts
// Tool call from the agent
{
"name": "load_skills_for_files",
"arguments": { "files": ["src/orders/orders.controller.ts"] },
}
matched-by skill
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
file:**/*.ts typescript/typescript-language
file:**/*.controller.ts nestjs/nestjs-api-standards
file:**/*.controller.ts nestjs/nestjs-controllers-services
file:**/*.controller.ts nestjs/nestjs-file-uploads
file:**/*.controller.ts nestjs/nestjs-real-time
file:**/*.controller.ts nestjs/nestjs-transport
composite via typescript/typescript-language common/common-best-practices
composite via nestjs/nestjs-api-standards common/common-api-design
composite via nestjs/nestjs-file-uploads common/common-security-standards
composite via nestjs/nestjs-real-time common/common-performance-engineering
composite via nestjs/nestjs-transport common/common-system-design
| From skill | Rule the agent now follows |
|---|---|
typescript-language | Strict typing, unknown over any, satisfies operator |
nestjs-controllers-services | Controllers stay thin; logic lives in services |
nestjs-api-standards | DTOs with class-validator, consistent error envelopes |
nestjs-transport | @HttpCode(201), ParseUUIDPipe, response shape |
common-best-practices | Functions < 30 lines, guard clauses, intention-revealing names |
common-api-design | Status codes, pagination, idempotency, OpenAPI conventions |
common-security-standards | Authn/authz, input sanitization, secret handling |
common-system-design | Module boundaries, coupling rules |
common-performance-engineering | Async patterns, N+1 query checks |
{ "name": "audit_session_compliance" }
# Session compliance
Skills loaded: 11
- common/common-api-design
- common/common-best-practices
- common/common-performance-engineering
- common/common-security-standards
- common/common-system-design
- nestjs/nestjs-api-standards
- nestjs/nestjs-controllers-services
- nestjs/nestjs-file-uploads
- nestjs/nestjs-real-time
- nestjs/nestjs-transport
- typescript/typescript-language
The agent reads AGENTS.md (maybe), walks the router (maybe), reads the matched _INDEX.md (maybe), and reads matched SKILL.md files (often skipped โ especially in sub-agents that don't inherit CLAUDE.md). Result:
| With MCP | Without MCP | |
|---|---|---|
typescript-language rules | โ Loaded | โ ๏ธ Sometimes |
nestjs-* framework rules | โ All 5 loaded | โ ๏ธ One or two if lucky |
common-best-practices (function size, naming, guard clauses) | โ Loaded via composite | โ Almost never |
common-api-design (status codes, pagination) | โ Loaded via composite | โ Almost never |
common-security-standards (input validation, auth) | โ Loaded via composite | โ Almost never |
| Provable audit log of what informed the code | โ
audit_session_compliance | โ None |
Behavior in sub-agents (tdd-implementer, architecture-guard, etc.) | โ Same as orchestrator | โ Worse โ sub-agents inherit nothing |
That's the reason the MCP exists: the rules automatically reach the working context every time, in every runtime, including sub-agents.
Agent Skills Standard supports Specialist Sub-Agents. These are focused personas (for example @specialist-tdd-implementer, @specialist-architecture-guard, @specialist-ac-verifier) that you can delegate specific parts of your workflow to.
.claude/agents, .codex/agents, .cursor/agents, .gemini/agents, and .github/copilot-agents.Skills are text files, not code. They cannot execute commands, access your filesystem, or make network requests. Here's the full picture:
Every skill in this repository is automatically scanned by NVIDIA SkillSpector โ a purpose-built security scanner for AI agent skills. The pipeline checks 64 vulnerability patterns across 16 categories including prompt injection, data exfiltration, privilege escalation, supply chain attacks, and MCP tool poisoning.
skills/** must pass the scan before mergingskillspector-verified-vYYYYMMDD tag is created on main when all scanned skills pass the gatecommon-llm-security, common-security-audit, and common-security-standards are intentionally excluded from the automated scan because they contain educational attack examples and AI security guidanceSee docs/SECURITY.md for the full security policy, threshold definitions, and instructions for running the scanner locally before submitting a PR.
ags feedbackevals.json datasets that verify AI adherence to constraints via regression testsAGENTS.md enforces a mandatory audit: the AI must declare which skills it loaded before writing code, preventing silent rule-skippingskills/<category>/, include evals.json.See ARCHITECTURE.md for design details and CLI Architecture for service internals.
benchmark-report.md measures skill size โ tokens, structure, rubric score. It's fast and free, but it can't tell you whether a skill actually changes agent behavior. evals-report.md does: each skill's real eval prompts are answered by an agent twice โ once with no skill loaded (baseline), once with it loaded (with-skill) โ and scored deterministically against the assertions already in evals/evals.json.
This runs inside any coding agent's normal chat session (Claude Code, Copilot, Codex, Antigravity โ no API key needed beyond what you already use to run that agent), and every result is independently verifiable afterward with no agent involved:
pnpm evals:verify -- --all # re-score every committed run, no API key, no LLM call
See docs/EVALS.md for the full protocol, the trust model, and how to run your own category.
| Version | Date | Skills | Avg Tokens | Savings (%) | Report |
|---|---|---|---|---|---|
| v2.6.0 | 2026-07-10 | 264 | 528 | 46% | Report |
| v2.4.7 | 2026-06-15 | 251 | 551 | 85% | Report |
| v2.4.6 | 2026-06-10 | 251 | 548 | 85% | Report |
| v2.4.1 | 2026-05-18 | 247 | 540 | 85% | Report |
| v2.4.0 | 2026-05-14 | 246 | 540 | 85% | Report |
| v2.3.0 | 2026-05-13 | 246 | 540 | 85% | Report |
| v2.2.2 | 2026-05-09 | 249 | 539 | 85% | Report |
| v2.2.0 | 2026-04-22 | 242 | 538 | 85% | Report |
| v2.1.2 | 2026-04-11 | 237 | 516 | 86% | Report |
| v2.1.1 | 2026-04-11 | 237 | 516 | 86% | Report |
.agents/
instructions.md
rules/
agent-skill-standard-rule.md
antigravity-rtk-rules.md
skills/
caveman/
caveman-commit/
SKILL.md
caveman-compress/
README.md
scripts/
__init__.py
__main__.py
benchmark.py
cli.py
compress.py
detect.py
validate.py
SECURITY.md
SKILL.md
caveman-review/
SKILL.md
SKILL.md
common/
common-best-practices/
references/
CODE_STRUCTURE.md
EFFECTIVENESS.md
SKILL.md
common-business-requirements/
references/
brd-template.md
checklist.md
standards-baseline.md
SKILL.md
common-code-review/
references/
checklist.md
lenses.md
output-format.md
report.md
request-template.md
SKILL.md
common-context-optimization/
references/
compaction.md
implementation.md
masking.md
SKILL.md
common-dast-tooling/
references/
implementation.md
SKILL.md
common-debugging/
references/
bug-report-template.md
SKILL.md
common-documentation/
references/
implementation.md
SKILL.md
common-exploit-verification/
references/
exploit-playbook.md
false-positive-checklist.md
SKILL.md
common-feedback-reporter/
references/
test-scenarios.md
violation-examples.md
SKILL.md
common-git-collaboration/
references/
CLEAN_HISTORY.md
implementation.md
SKILL.md
common-learning-log/
references/
log-format.md
SKILL.md
common-llm-security/
references/
owasp-llm.md
SKILL.md
common-mobile-visual-testing/
references/
scenarios.md
SKILL.md
common-operator-profile/
SKILL.md
common-owasp/
references/
owasp-api.md
owasp-mobile.md
owasp-web.md
SKILL.md
common-pentest-methodology/
references/
compliance-mapping.md
continuous-pentest.md
exploit-techniques.md
owasp-mobile.md
platform-recon.md
report-template.md
threat-modeling.md
SKILL.md
common-performance-engineering/
references/
implementation.md
SKILL.md
common-product-requirements/
references/
checklist.md
lean-spec-template.md
prd-template.md
SKILL.md
common-protocol-enforcement/
SKILL.md
common-security-audit/
references/
implementation.md
mobile-audit.md
REMEDIATION.md
signals.md
trust-review-policy.md
vibe-security-scan.md
SKILL.md
common-security-standards/
references/
implementation.md
INJECTION_TESTING.md
VULNERABILITY_REMEDIATION.md
SKILL.md
common-session-retrospective/
references/
methodology.md
SKILL.md
common-skill-creator/
references/
anti-patterns.md
benchmark.md
eval-workflow.md
lifecycle.md
resource-organization.md
rubric.md
size-limits.md
TEMPLATE.md
tessl-best-practices.md
testing.md
web-search-research.md
SKILL.md
common-software-requirements/
references/
frs-checklist.md
srs-template.md
standards-baseline.md
SKILL.md
common-store-changelog/
references/
commit_examples.md
SKILL.md
common-system-design/
references/
distributed-systems.md
implementation.md
resilience-patterns.md
SKILL.md
common-tdd/
references/
aaa_example.md
aaa_methodology.md
anti-patterns.md
best-practices.md
tdd_patterns.md
test_runners.md
testing_anti_patterns.md
SKILL.md
common-telemetry/
SKILL.md
common-ui-design/
references/
motion.md
tones.md
SKILL.md
common-web-visual-testing/
references/
diagnostic-decoder.md
dom-snapshot-vs-screenshot.md
login-and-test-data.md
scenarios.md
SKILL.md
common-workflow-writing/
SKILL.md
javascript/
best-practices/
references/
REFERENCE.md
SKILL.md
language/
references/
REFERENCE.md
SKILL.md
tooling/
references/
REFERENCE.md
SKILL.md
quality-engineering/
quality-engineering-appium-mcp/
references/
lambdatest-cloud-setup.md
project-context.md
tool-cheatsheet.md
SKILL.md
quality-engineering-business-analysis/
references/
analysis_patterns.md
logic_truth_tables.md
user_story_template.md
SKILL.md
quality-engineering-jira-integration/
SKILL.md
quality-engineering-playwright-cli/
references/
anti-patterns-rationale.md
project-context.md
SKILL.md
quality-engineering-quality-assurance/
references/
TDD_FEEDBACK.md
test_case_standards.md
SKILL.md
quality-engineering-zephyr-coverage-analysis/
references/
coverage_report_template.md
SKILL.md
quality-engineering-zephyr-test-generation/
references/
impact_analysis.md
tc_format.md
zephyr_schema.json
SKILL.md
typescript/
typescript-best-practices/
references/
examples.md
REFERENCE.md
SKILL.md
typescript-language/
references/
REFERENCE.md
TESTING.md
SKILL.md
typescript-security/
references/
REFERENCE.md
SKILL.md
typescript-tooling/
references/
REFERENCE.md
SKILL.md
workflows/
battle-test.md
brainstorm-feature.md
code-review.md
codebase-review.md
deploy-release.md
design-solution.md
dev-fix.md
evals-run.md
implement-feature.md
implementation-readiness.md
incident-hotfix.md
pentest.md
plan-feature.md
publish-notes.md
retro-learn.md
review-ticket.md
sdlc.md
security-test.md
session-report.md
skill-benchmark.md
traceability-audit.md
uat-signoff.md
update-docs.md
verify-bug.md
verify-work.md
zephyr-coverage-analysis.md
.antigravity/
mcp_config.json
.codex/
agents/
ac-verifier.toml
architecture-guard.toml
aspm-correlator.toml
codebase-scout.toml
confluence-searcher.toml
integration-test-generator.toml
jira-analyst.toml
logic-hacker.toml
mobile-reverser.toml
pr-commenter-batch.toml
pr-reviewer.toml
security-reviewer.toml
tc-creator.toml
tdd-implementer.toml
test-gap-finder.toml
zephyr-scanner.toml
config.toml
hooks/
hooks.json
preedit-skill-loader.js
rules/
agent-skill-standard-rule.md
skills/
battle-test/
SKILL.md
brainstorm-feature/
SKILL.md
code-review/
SKILL.md
codebase-review/
SKILL.md
common/
common-best-practices/
references/
CODE_STRUCTURE.md
EFFECTIVENESS.md
SKILL.md
common-business-requirements/
references/
brd-template.md
checklist.md
standards-baseline.md
SKILL.md
common-code-review/
references/
checklist.md
lenses.md
output-format.md
report.md
request-template.md
SKILL.md
common-context-optimization/
references/
compaction.md
implementation.md
masking.md
SKILL.md
common-dast-tooling/
references/
implementation.md
SKILL.md
common-debugging/
references/
bug-report-template.md
SKILL.md
common-documentation/
references/
implementation.md
SKILL.md
common-exploit-verification/
references/
exploit-playbook.md
false-positive-checklist.md
SKILL.md
common-feedback-reporter/
references/
test-scenarios.md
violation-examples.md
SKILL.md
common-git-collaboration/
references/
CLEAN_HISTORY.md
implementation.md
SKILL.md
common-learning-log/
references/
log-format.md
SKILL.md
common-llm-security/
references/
owasp-llm.md
SKILL.md
common-mobile-visual-testing/
references/
scenarios.md
SKILL.md
common-operator-profile/
SKILL.md
common-owasp/
references/
owasp-api.md
owasp-mobile.md
owasp-web.md
SKILL.md
common-pentest-methodology/
references/
compliance-mapping.md
continuous-pentest.md
... 1600 moreShowing a partial view of a very large repo.
FAQ
agent-skills-standard is a Claude Code plugin with 200 hand-picked skills for development work, indexed on Flowy. Install it with the command on its page. It includes android-agp-upgrade, android-architecture, android-background-work. Its skills do not fire on their own yet. Request auto-invocation to have Flowy route them as you prompt. Free and open source.