一键导入
pm-db
Project management database for tracking specs, jobs, tasks, and execution. Use when Codex should run the converted pm-db workflow. Inputs: command.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Project management database for tracking specs, jobs, tasks, and execution. Use when Codex should run the converted pm-db workflow. Inputs: command.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Mode 2 - Structured execution with quality gates (Part 1-5) with pm-db tracking. Use when Codex should run the converted start-phase-execute workflow. Inputs: task_list_file, extra_instructions, spec_id.
Converted Claude skill for architecture-quality-assess. Use when Codex should run the converted architecture-quality-assess workflow.
Complete feature workflow - from planning to execution with PM-DB tracking. Use when Codex should run the converted feature-new workflow. Inputs: feature_description.
Use this agent when you need to design API contracts BEFORE implementation. This agent enforces contract-first API design, creates OpenAPI specifications, and defines three-tier architecture for Next.js backend APIs. Invoke in these scenarios:. Use when Codex needs this specialist perspective or review style.
Deep analysis of codebase for code duplication. Detects exact, structural, and pattern-level duplicates, generates comprehensive reports with refactoring suggestions and metrics.. Use when Codex should run the converted code-duplication workflow.
Deep analysis of codebase vs documentation alignment. Detects drift, identifies undocumented code, extracts missing glossary terms, and provides actionable recommendations without making changes.. Use when Codex should run the converted document-hub-analyze workflow.
| name | pm-db |
| description | Project management database for tracking specs, jobs, tasks, and execution. Use when Codex should run the converted pm-db workflow. Inputs: command. |
Converted Claude skill workflow for Codex/OpenAI use.
Converted from skills/pm-db/SKILL.md.
Supporting files copied from the Claude source:
references/ACCEPTANCE_CRITERIA_VERIFICATION.mdreferences/API_REFERENCE.mdreferences/DEVELOPMENT.mdreferences/DOCUMENTATION_REVIEW.mdreferences/README.mdreferences/SECURITY_AUDIT.mdreferences/USER_GUIDE.mdscriptsassets/testsassets/migrationsassets/prisma/schema.prismaThe content below was adapted from the Claude source. Rewrite tool and runtime assumptions as needed when they refer to Claude-only features.
scripts/ and SQL migrations in assets/migrations/ are the primary portable parts of this skill.Manage the project management database for tracking specifications, jobs, tasks, code reviews, and execution logs.
init - Initialize DatabaseCreates the projects.db database and runs all migrations.
$pm-db init
$pm-db init --reset # Backup existing and create fresh database
import - Import SpecificationsImports specifications from job-queue folders.
$pm-db import
$pm-db import --project auth # Filter by project name
dashboard - Show DashboardDisplays project management dashboard with metrics.
$pm-db dashboard
$pm-db dashboard --format json
$pm-db dashboard --format markdown
migrate - Run MigrationsApplies pending database migrations.
$pm-db migrate
$pm-db migrate --dry-run
$pm-db migrate --target-version 2
backup - Backup DatabaseCreates a timestamped backup of the database (not yet implemented).
$pm-db backup
# First-time setup
$pm-db init
# Import all specs
$pm-db import
# View dashboard
$pm-db dashboard
# Export to JSON
$pm-db dashboard --format json
Default: ~/.codex/projects.db
The original Claude setup used hook scripts for automatic tracking, but they are not native Codex behavior.
See assets/migrations/ for the vendored SQL schema and assets/prisma/schema.prisma for the Prisma schema snapshot.
Tables:
projects - Top-level projectsspecs - Specifications (FRD, FRS, GS, TR, task-list)jobs - Execution jobstasks - Individual tasks within jobscode_reviews - Code review resultsexecution_logs - Command execution logsagent_assignments - Agent work assignments