autogoal
Create, verify, repair, and close durable Codex goals with measurable outcomes, evidence gates, plan templates, blocker handling, completion audits, and…
Review agent-native parity for skills, prompts, tools, commands, generated mirrors, repo workflows, and user-facing actions.
$ npx -y skills add udecode/dotai --skill agent-native-reviewer --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/agent-native-reviewerContext preview
The summary Claude sees to decide when to auto-load this skill.
Review agent-native parity for skills, prompts, tools, commands, generated mirrors, repo workflows, and user-facing actions.
name: agent-native-reviewer description: Review agent-native parity for skills, prompts, tools, commands, generated mirrors, repo workflows, and user-facing actions.
Review whether an agent can perform, verify, and discover the same meaningful action a user can.
The standard is simple:
user action -> agent route -> source owner -> proof command/artifact -> handoff
If one link is missing, the workflow is not agent-native.
workflow docs changed.
integration.
same surface a human can.
paths.
entry, CAPTCHA, legal acceptance, biometric unlock, or OS permission prompts.
1. **Action parity.** Every important user action has an agent route. 2. **Context parity.** Agents can see the inputs, state, and constraints needed to act well. 3. **Source ownership.** Agents edit the durable source, not generated mirrors or copied output. 4. **Proof parity.** Agents can verify the outcome with the same authority a maintainer would trust. 5. **Discoverability.** The route is visible from the skill, AGENTS file, command docs, tool schema, or public API docs an agent is expected to read. 6. **Shared workspace.** Agent-created artifacts live where humans can inspect, edit, and commit them.
Assume Codex is the agent runtime unless the repo says otherwise. Prefer the most repeatable proof and interaction layer that can cover the action:
1. **Tests and scripts first.** Unit, integration, browser-test, benchmark, typecheck, lint, import smoke, generated-mirror audit, and source audit are the default proof layer. If a behavior can be proved there, do that before driving an app by hand. 2. **Browser next.** Use the Browser plugin for app/browser interaction proof when tests cannot fully prove rendered behavior, native selection, focus, navigation, screenshots, console/network state, or real route behavior. 3. **Chrome after Browser.** Use Chrome when the task depends on the user's existing Chrome state, profile, tabs, extensions, cookies, or a site state that Browser cannot access. 4. **Computer Use last.** Use Computer Use for OS-level or native-app actions that tests, Browser, and Chrome cannot reach. Treat it as powerful but brittle; record exact manual proof and any limits.
Do not jump straight to UI automation when a focused test, command, or source audit gives stronger evidence. Do not claim a behavior is agent-native unless the selected layer can be rerun or described precisely enough for another agent to repeat.
agent-native requirements into the plan before implementation.
repo boundaries. Shared behavior belongs in dotai; repo policy stays local.
just one task's mechanics.
`autoreview`; only recommend it after a complete end-to-end feature when an optional independent second pass could materially help.
duplicate agent routes should be deleted rather than wrapped.
flaky proof, or unclear failure path.
Classify the action surface:
| Surface | Examples | |---|---| | Skill/workflow | `SKILL.md`, `.mdc`, plan template, generated mirror, lockfile | | Command/tool | CLI command, script, MCP tool, GitHub workflow, package script | | Public API | exported package API, docs example, release artifact | | Product action | button, form, keyboard shortcut, browser route, OS/device path | | Maintainer action | issue triage, PR feedback, security advisory, release lane |
For incremental reviews, start from the changed files and expand only to the source owner, generated mirror, lockfile, command, or docs that prove parity.
Use this map for every meaningful action:
| User action | Agent route | Source owner | Mirror/lock/doc | Proof | Status | |---|---|---|---|---|---| | action | skill/tool/command | file/path | generated/config/doc | command/artifact | pass/gap/N/A |
Status rules:
concrete reason.
Flag any workflow that asks agents to edit output instead of source.
Common source boundaries:
| Output | Source owner | |---|---| | `.agents/skills/**/SKILL.md` installed mirror | external skill package or `.agents/rules/**` source | | `.claude/skills/**/SKILL.md` installed mirror | external skill package or `.agents/rules/**` source | | root `AGENTS.md` generated block | `.agents/AGENTS.md` or repo generator input | | generated barrel/export file | package source plus barrel generator command | | generated docs/template output | registry/package/docs source named by repo policy | | copied skill in many repos | dotai source plus Skills CLI install/update |
Finding severity is high when the wrong
Shared skills for coding agents. Skills are the main routing layer. This repo is the canonical source for reusable udecode workflows; downstream repos should link to these skills instead of copying long SKILL.md files around.
Repo: udecode/dotai
Create, verify, repair, and close durable Codex goals with measurable outcomes, evidence gates, plan templates, blocker handling, completion audits, and…
Remove a feature completely with no backward compatibility; delete surfaces, callers, tests, docs, fallbacks, stubs, and dead exports.
Run a scoped Linear backlog autonomously as a sequence of maximal safe parallel batches by composing orchestrator, autogoal, and task. Use when the user wants…
Turn the current Codex thread into a coordination thread that routes implementation work to durable reusable child threads in disposable worktrees with…
Resolve GitHub PR review feedback with source-backed triage, fixes, autogoal plan state, focused proof, replies, and thread resolution.
Sync root VISION.md from changed human and agent inputs; use when project taste, doctrine, or maintainer judgment should learn from recent plans, docs, skills,…