AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Ou Features Audit

skill-secondorderai-ouroboros-ou-features-audit · by secondorderai

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 a…

No reviews yet
0 installs
30 views
0.0% view→install

Install

$ agentstack add skill-secondorderai-ouroboros-ou-features-audit

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-secondorderai-ouroboros-ou-features-audit)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
2mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Ou Features Audit? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

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  --json number,title,body,state,labels

If the repository supports sub-issues, also check:

gh api repos///issues//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:

| Category | Primary paths | |---|---| | CLI agent loop | packages/cli/src/agent.ts, packages/cli/src/cli/, packages/cli/src/llm/ | | CLI tools | packages/cli/src/tools/, packages/cli/tests/tools/ | | Config and permissions | packages/cli/src/config.ts, packages/cli/src/*permission*, related tests | | Persistence | packages/cli/src/memory/, packages/cli/tests/memory/ | | JSON-RPC | packages/cli/src/json-rpc/, packages/desktop/src/shared/protocol.ts, integration tests | | Desktop main/IPC | packages/desktop/src/main/, packages/desktop/src/preload/, E2E tests | | Desktop renderer | packages/desktop/src/renderer/, stores, hooks, components, views | | Shared types | packages/shared/src/, package consumers | | Team/subagent features | packages/cli/src/team/, spawn-agent, subagent, worker, permission-lease files | | Tests | packages/cli/tests/, packages/desktop/tests/, bun run verify output when available |

Status Rules

Assign one status per criterion:

| Status | Meaning | |---|---| | PASS | Fully implemented and matches the requirement. Cite code/test evidence. | | FAIL | Missing or implemented incorrectly. State expected vs. actual. | | PARTIAL | Some required behavior exists but important pieces are missing or mismatched. | | NOT VERIFIABLE | Code 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.

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.