standards
Original:🇺🇸 English
Translated
Language-specific coding standards and validation rules. Provides Python, Go, Rust, TypeScript, Shell, YAML, JSON, and Markdown standards. Auto-loaded by /vibe, /implement, /doc, /bug-hunt, /complexity based on file types.
2installs
Sourceboshu2/agentops
Added on
NPX Install
npx skill4agent add boshu2/agentops standardsTags
Translated version includes tags in frontmatterSKILL.md Content
View Translation Comparison →Standards Skill
Language-specific coding standards loaded on-demand by other skills.
Purpose
This is a library skill - it doesn't run standalone but provides standards
references that other skills load based on file types being processed.
Standards Available
| Language | Reference | Loaded By |
|---|---|---|
| Python | | vibe, implement, complexity |
| Go | | vibe, implement, complexity |
| Rust | | vibe, implement, complexity |
| TypeScript | | vibe, implement |
| Shell | | vibe, implement |
| YAML | | vibe |
| JSON | | vibe |
| Markdown | | vibe, doc |
How It Works
Skills declare as a dependency:
standardsyaml
skills:
- standardsThen load the appropriate reference based on file type:
python
# Pseudo-code for standard loading
if file.endswith('.py'):
load('standards/references/python.md')
elif file.endswith('.go'):
load('standards/references/go.md')
elif file.endswith('.rs'):
load('standards/references/rust.md')
# etc.Deep Standards
For comprehensive audits, skills can load extended standards from
which contain full compliance catalogs.
vibe/references/*-standards.md| Standard | Size | Use Case |
|---|---|---|
| Tier 1 (this skill) | ~5KB each | Normal validation |
| Tier 2 (vibe/references) | ~15-20KB each | Deep audits, |
Integration
Skills that use standards:
- - Loads based on changed file types
/vibe - - Loads for files being modified
/implement - - Loads markdown standards
/doc - - Loads for root cause analysis
/bug-hunt - - Loads for refactoring recommendations
/complexity