Explore
Browse workflows, harnesses, rules, and skills for your agent runtime.
Filters
29 packages
openagents/accessibility-rules
Accessibility Rules
Rules for agent-written UI: semantics before ARIA, keyboard parity, visible focus, and contrast that actually passes
openagents/agent-guardrails
Agent Guardrails
Pre-action checks for destructive ops, budget/turn limits, confirmation gates, and a structured audit log
openagents/api-design-review
API Design Review
Review an HTTP or RPC interface before it ships: naming, errors, pagination, versioning, and the parts that become permanent
openagents/changelog-generator
Changelog Generator
Turns a git log range into a grouped CHANGELOG entry with breaking changes called out and links to issues/PRs
openagents/commit-conventions
Commit Conventions
Conventional Commits, branch naming, and a PR description template as standing rules
openagents/context-compaction
Context Compaction
Keep a long-running agent coherent past its context window: what to keep, what to summarize, and how to resume
openagents/data-cleaning
Dataset Profiler
Profile a messy dataset before analyzing it: types, missingness, duplicates, outliers, and the questions it cannot answer
openagents/db-migration-review
Migration Review
Review a schema migration before it runs: locks, blast radius, deploy compatibility, and a rehearsed rollback
openagents/dependency-upgrader
Dependency Upgrader
Audits outdated dependencies, upgrades in risk order, runs tests after each, and opens one PR per major bump
openagents/eval-harness
Agent Eval Harness
Build a real eval suite for an agent or prompt: cases, graders, a baseline, and a regression gate
openagents/flaky-test-triage
Flaky Test Triage
Find why a test is flaky rather than retrying it: classify the cause, prove it, fix it, and quarantine honestly
openagents/human-in-the-loop
Human In The Loop
Approval gates for risky agent actions: what needs asking, how to ask well, and what an approval does not cover
openagents/incident-runbook
Incident Runbook
Triage, mitigate, communicate, and postmortem for production incidents, with timers and escalation rules
openagents/log-triage
Log Triage
Turn a wall of logs into a ranked set of hypotheses, each with the evidence for it and the cheapest way to test it
openagents/perf-investigation
Performance Investigation
Find why something is slow with measurement rather than intuition: baseline, profile, fix the top cost, verify
openagents/postmortem-writer
Blameless Postmortem
Turn an incident into a written postmortem: timeline from evidence, contributing factors, and actions that are actually assigned
openagents/pr-reviewer
Pull Request Reviewer
Structured PR review with risk classification, a correctness/security/test/perf checklist, and severity-tagged output
openagents/python-style-rules
Python Style Rules
Rules for agent-written Python: explicit failures, boring data structures, dependency restraint, and honest type hints
openagents/repo-onboarding
Repo Onboarding
Map an unfamiliar codebase into an architecture summary, entrypoints, conventions, and run/test instructions
openagents/research-brief
Research Brief
Turn a question into a sourced brief — search plan, graded sources, claim ledger, and a brief template
openagents/secure-coding-rules
Secure Coding Rules
CLAUDE.md-style rules for secrets, input validation, authz, dependency hygiene, and PII logging
openagents/sql-explain
Query Plan Reader
Read an EXPLAIN plan, find the actual bottleneck, and propose the smallest index or rewrite that fixes it
openagents/sql-safety-rules
SQL Safety Rules
Rules for agent-written SQL and migrations: no unbounded writes, no blocking locks, always a rollback path
openagents/test-writer-loop
Test Writer Loop
Red/green loop that picks an untested module, writes a failing test, implements it, and iterates with coverage deltas