agentsclimarketplace

Ou features audit

Skill secondorderai/ouroboros/.agents/skills/ou-features-audit

Ouroboros is an Agent Harness, CLI and Desktop App with Self-Improvement layer

Install
npx -y skills add secondorderai/ouroboros --skill ou-features-audit

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 2 stars2 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Audit implemented Ouroboros features against requirements, PRDs, tickets, GitHub issues, or acceptance criteria to find missing, partial, incorrect, or unverifiable work. Use when the user asks to audit a feature, verify implementation completeness, compare code to requirements, check acceptance criteria, run a gap analysis, determine what is left to build, check whether a ticket is done, audit against a PRD/spec, or asks whether recent work in the Ouroboros codebase matches its requirements. Do NOT use for creating PRDs, generating tickets, implementing tickets, broad full-codebase review, or general bug triage.

SKILL.md

6.9 KB, as published. Nobody here has run it

Ouroboros Features Audit

Audit the Ouroboros codebase against feature requirements and acceptance criteria. Produce a structured gap analysis showing what passed, what failed, what is partial, and what cannot be verified from code alone.

Return the report in the conversation unless the user explicitly asks for a file.

1. Gather Requirements

Try sources in this order, stopping at the first useful source.

GitHub Issue

If the user provides an issue URL or number, fetch it with the current repository remote:

gh issue view <number> --json number,title,body,state,labels

If the repository supports sub-issues, also check:

gh api repos/<owner>/<repo>/issues/<number>/sub_issues

Fetch sub-issue bodies when present; they often contain the actionable acceptance criteria.

Local Markdown

Check these locations:

  1. Any file explicitly named by the user.
  2. PRD.md in the current working directory.
  3. Markdown files in tickets/.
  4. Nearby ticket-*.md or prd-*.md files.

If both PRD.md and tickets/ exist, treat tickets as the source of truth for "done" and use the PRD for context.

Conversation Context

If the requirements were just discussed in the conversation, extract criteria from that context and state what you are auditing against before proceeding.

Missing Source

If no requirements source is available, ask for a GitHub issue number, ticket path, PRD path, or pasted criteria.

2. Extract Testable Criteria

Transform the source into a flat list of falsifiable criteria grouped by category.

From structured tickets, extract every checkbox under Acceptance Criteria, Feature Tests, Requirements, and similar sections. Audit checked and unchecked boxes; a checked box is only a claim, not proof.

From prose, extract concrete statements:

  • Data model: new types, fields, persistence, transcript records, config shape.
  • CLI behavior: commands, agent loop behavior, tool contracts, config loading.
  • Tools: tool name, schema, permissions, execution behavior, Result contract.
  • JSON-RPC: request methods, notifications, protocol types, handlers.
  • Desktop UI: renderer components, Zustand stores, IPC handling, visible states.
  • Permissions and safety: approval gates, read-only restrictions, leases, worktree isolation.
  • Tests: unit, integration, and E2E coverage required by AGENTS.md.

Always add relevant implicit Ouroboros criteria:

  • New CLI tools export name, description, JSON Schema schema, and async execute.
  • Tool execution follows local Result/error-handling conventions where the surrounding code expects them.
  • New or renamed RPC methods update RPC_METHOD_NAMES and pass protocol contract tests.
  • New notification types update NOTIFICATION_METHOD_NAMES and pass protocol contract tests.
  • CLI feature changes include Bun tests in the matching packages/cli/tests/ area.
  • Desktop user-visible changes include Playwright E2E tests in packages/desktop/tests/e2e/.
  • Shared type changes are exercised from at least one consuming package.
  • Runtime behavior stays in the CLI; desktop remains presentation/IPC.
  • Renderer code uses typed preload APIs and existing stores/components.
  • Colors and component styling follow packages/desktop/DESIGN.md and CSS variable conventions.

Before deep investigation, briefly present the criteria list grouped by category and say you are proceeding with the audit.

3. Audit the Codebase

Use rg, rg --files, targeted file reads, and existing tests to verify each criterion. Prefer code evidence over assumptions.

If the user explicitly asked for parallel agent work and the harness permits it, split independent categories across up to three explore agents. Otherwise audit locally.

Ouroboros Investigation Map

Use these paths as the default search surface:

CategoryPrimary paths
CLI agent looppackages/cli/src/agent.ts, packages/cli/src/cli/, packages/cli/src/llm/
CLI toolspackages/cli/src/tools/, packages/cli/tests/tools/
Config and permissionspackages/cli/src/config.ts, packages/cli/src/*permission*, related tests
Persistencepackages/cli/src/memory/, packages/cli/tests/memory/
JSON-RPCpackages/cli/src/json-rpc/, packages/desktop/src/shared/protocol.ts, integration tests
Desktop main/IPCpackages/desktop/src/main/, packages/desktop/src/preload/, E2E tests
Desktop rendererpackages/desktop/src/renderer/, stores, hooks, components, views
Shared typespackages/shared/src/, package consumers
Team/subagent featurespackages/cli/src/team/, spawn-agent, subagent, worker, permission-lease files
Testspackages/cli/tests/, packages/desktop/tests/, bun run verify output when available

Status Rules

Assign one status per criterion:

StatusMeaning
PASSFully implemented and matches the requirement. Cite code/test evidence.
FAILMissing or implemented incorrectly. State expected vs. actual.
PARTIALSome required behavior exists but important pieces are missing or mismatched.
NOT VERIFIABLECode alone cannot prove it; state the manual or runtime check needed.

Flag any source checkbox marked done when the implementation does not actually satisfy it.

4. Report

Use this structure:

# Feature Audit: [Feature Name]

**Source:** [issue/ticket/PRD/conversation]
**Date:** [YYYY-MM-DD]
**Scope:** Codebase audit only unless otherwise stated

## Summary

| Status | Count |
|---|---:|
| PASS | N |
| FAIL | N |
| PARTIAL | N |
| NOT VERIFIABLE | N |
| **Total** | **N** |

**Overall assessment:** [One sentence.]

## Findings by Category

### [Category]

| # | Criterion | Status | Evidence / Gap |
|---:|---|---|---|
| 1 | [criterion] | PASS | `[file]` implements ..., `[test]` covers ... |
| 2 | [criterion] | FAIL | Expected ..., but no matching implementation found in ... |

## Action Items

1. **[FAIL/PARTIAL] [Short title]** - What to build or fix, which files to inspect or modify, and what test should prove it.

## Notes

[Caveats, runtime checks needed, stale ticket flags, or verification commands.]

Keep evidence concrete. Include file paths and function/component names. For gaps, name the likely owner files and the regression test that should be added.

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.