Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
boshu2 avatar

Standards

  • 1.2k installs
  • 416 repo stars
  • Updated August 5, 2026
  • boshu2/agentops

standards is an agentops skill that enforces workflow naming, manifest, and validation conventions across automation pipelines.

About

The agentops standards skill defines conventions for boshu2 agentops pipelines including artifact naming, manifest fields, validation checkpoints, and required metadata across automation stages. Agents use it to audit workflow repos for missing standard files, inconsistent step labels, or outputs that break downstream converter and deployment skills. It specifies how tasks should declare inputs, outputs, versioning, and failure reporting so multi-agent runs remain reproducible. Invoke when standardizing an agentops project, onboarding a new workflow stage, or reviewing whether existing automation complies with the shared standards document.

  • Defines agentops naming, manifest, and validation conventions.
  • Audits pipelines for missing metadata and inconsistent step labels.
  • Aligns outputs with converter and deployment sibling skills.
  • Requires explicit inputs, outputs, and failure reporting fields.
  • Supports onboarding and compliance review for workflow repos.

Standards by the numbers

  • 1,240 all-time installs (skills.sh)
  • +26 installs in the week ending Aug 5, 2026 (Skillselion tracking)
  • Ranked #247 of 2,715 Automation & Workflows skills by installs in the Skillselion catalog
  • Security screen: MEDIUM risk (skills.sh audit)
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
At a glance

standards capabilities & compatibility

Capabilities
pipeline convention audits · manifest metadata requirements · validation checkpoint definitions · downstream compatibility checks · failure reporting standardization
Use cases
orchestration
From the docs

What standards says it does

standards
SKILL.md
npx skills add https://github.com/boshu2/agentops --skill standards

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs1.2k
repo stars416
Security audit3 / 3 scanners passed
Last updatedAugust 5, 2026
Repositoryboshu2/agentops

Does this agentops workflow meet shared naming, manifest, and validation standards for downstream steps?

Enforce agentops workflow standards for naming, manifests, validation, and pipeline consistency.

Who is it for?

Agents standardizing or auditing boshu2 agentops workflow repositories.

Skip if: Skip for unrelated CI YAML outside the agentops toolkit conventions.

When should I use this skill?

User standardizes agentops projects or audits workflow compliance with shared conventions.

What you get

A standards compliance review with missing metadata fixes and normalized pipeline conventions.

  • ubiquitous-language register
  • cited term definitions

Files

SKILL.mdMarkdownGitHub ↗

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

StandardReferenceLoaded By
Skill Structurereferences/skill-structure.mdvibe (skill audits), doc (skill creation)
Pythonreferences/python.mdvibe, implement, complexity
Goreferences/go.mdvibe, implement, complexity
Rustreferences/rust.mdvibe, implement, complexity
TypeScriptreferences/typescript.mdvibe, implement
JavaScriptreferences/javascript.mdvibe, implement
Shellreferences/shell.mdvibe, implement
YAMLreferences/yaml.mdvibe
JSONreferences/json.mdvibe
Markdownreferences/markdown.mdvibe, doc
SQL Safetyreferences/sql-safety-checklist.mdvibe, pre-mortem (when DB code detected)
LLM Trust Boundariesreferences/llm-trust-boundary-checklist.mdvibe, pre-mortem (when LLM code detected)
Race Conditionsreferences/race-condition-checklist.mdvibe, pre-mortem (when concurrent code detected)
Codex Skillsreferences/codex-skill.mdvibe (when skills-codex/ or converter files detected)
Behavioral Disciplinereferences/behavioral-discipline.mdimplement, review, vibe, pre-mortem
Test Pyramidreferences/test-pyramid.mdplan, pre-mortem, implement, crank, validation, post-mortem
SKILL.md Tier-Capsreferences/skill-tier-caps.mdvibe (skill line-cap audits), doc, plan
External-Source Attributionreferences/external-source-attribution.mddoc (when absorbing external corpora), heal-skill

How It Works

Skills declare standards as a dependency:

skills:
  - standards

Then load the appropriate reference based on file type:

# 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.

Domain-Specific Checklists

Specialized checklists for high-risk code patterns. Loaded automatically by /validate and /pre-mortem when matching code patterns are detected:

ChecklistTrigger PatternRisk Area
sql-safety-checklist.mdSQL queries, ORM calls, migration files, database/sql, sqlalchemy, prismaInjection, migration safety, N+1, transactions
llm-trust-boundary-checklist.mdanthropic, openai imports, prompt templates, *llm*/*prompt* filesPrompt injection, output validation, cost control
race-condition-checklist.mdGoroutines, threads, asyncio, sync.Mutex, shared file I/OShared state, file races, database races
codex-skill.mdFiles under skills-codex/, convert.sh, skills-codex-overrides/Codex API conformance, prohibited primitives, tool mapping
behavioral-discipline.mdExecution, review, or plan-validation tasks with ambiguity or broad blast radiusHidden assumptions, overbuilding, drive-by edits, weak verification

Skills detect triggers via file content patterns and import statements. Each checklist's "When to Apply" section defines exact detection rules.

Deep Standards

For comprehensive audits, skills can load extended standards from vibe/references/*-standards.md which contain full compliance catalogs.

StandardSizeUse Case
Tier 1 (this skill)~5KB eachNormal validation
Tier 2 (vibe/references)~15-20KB eachDeep audits, --deep flag
Domain checklists~3-5KB eachTriggered by code pattern detection

Integration

Skills that use standards:

  • /validate - Loads based on changed file types
  • /implement - Loads for files being modified
  • /review - Loads for change-quality and blast-radius checks
  • /doc - Loads markdown standards
  • /review - Loads for root cause analysis
  • /refactor - Loads for refactoring recommendations

Examples

Vibe Loads Python Standards

User says: /validate (detects changed Python files)

What happens: 1. Vibe skill checks git diff for file types 2. Vibe finds auth.py in changeset 3. Vibe loads standards/references/python.md automatically 4. Vibe validates against Python standards (type hints, docstrings, error handling) 5. Vibe reports findings with standard references

Result: Python code validated against language-specific standards without manual reference loading.

Implement Loads Go Standards

User says: /implement ag-xyz-123 (issue modifies Go files)

What happens: 1. Implement skill reads issue metadata to identify file targets 2. Implement finds server.go in implementation scope 3. Implement loads standards/references/go.md for context 4. Implement writes code following Go standards (error handling, naming, package structure) 5. Implement validates output against loaded standards before committing

Result: Go code generated conforming to standards, reducing post-implementation vibe findings.

Troubleshooting

ProblemCauseSolution
Standards not loadedFile type not detected or standards skill missingCheck file extension matches reference; verify standards in dependencies
Wrong standard loadedFile type misidentified (e.g., .sh as .bash)Manually specify standard; update file type detection logic
Deep standards missingVibe needs extended catalog, not foundCheck vibe/references/*-standards.md exists; use --deep flag
Standard conflictsMultiple languages in same changesetLoad all relevant standards; prioritize by primary language

Reference Documents

  • references/architecture-terms.md
  • references/common-standards.md
  • references/behavioral-discipline.md
  • references/examples-troubleshooting-template.md
  • references/cli-wireup-template.md — Reproducible cobra subcommand template (noun + verb, injectable Options, ~10 min/cycle)
  • references/go.md
  • references/json.md
  • references/markdown.md
  • references/python.md
  • references/rust.md
  • references/shell.md
  • references/skill-structure.md
  • references/standards-index.md
  • references/typescript.md
  • references/javascript.md
  • references/sql-safety-checklist.md
  • references/llm-trust-boundary-checklist.md
  • references/race-condition-checklist.md
  • references/codex-skill.md
  • references/test-pyramid.md
  • references/yaml.md
  • references/skill-tier-caps.md
  • references/external-source-attribution.md

Related skills

How it compares

Choose AgentOps standards when you need enforced ubiquitous-language consistency across agent surfaces rather than a standalone DDD explainer document.

FAQ

What does agentops standards cover?

Artifact naming, manifest fields, validation checkpoints, and required pipeline metadata.

Why align with converter skills?

So downstream converter and deployment steps receive predictable standardized outputs.

When should compliance be checked?

When onboarding new workflow stages or reviewing existing agentops automation repos.

Is Standards safe to install?

skills.sh reports 3 of 3 security scanners passed. Review the Security Audits panel on this page before installing in production.

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.