بنقرة واحدة
ndx-capture
Capture a requirement, feature idea, or task from conversation context
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Capture a requirement, feature idea, or task from conversation context
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Swap between local n-dx development build and published npm version
View or change n-dx configuration with guided assistance
Analyze the codebase and propose PRD updates
Restructure the PRD hierarchy — regroup epics, change levels, merge overlaps, create new containers
Pick up a task from the PRD and begin working on it
Prevent plan-mode stalls in autonomous hench agent runs
| name | ndx-capture |
| description | Capture a requirement, feature idea, or task from conversation context |
| argument-hint | [description] |
Capture a requirement, feature idea, or task from conversation context.
If a description is provided, use it. Otherwise, review recent conversation for feature requests, requirements, or product decisions
Call get_prd_status (rex MCP) to understand current PRD structure
Determine the appropriate level:
Find the appropriate parent by matching to existing epics/features
Draft the item: title, description, acceptance criteria
Present to the user for confirmation before creating
Use add_item (rex MCP) to create, then confirm placement in hierarchy
Check for dependencies: does this item block or depend on other pending items? If so, set blockedBy via edit_item (rex MCP)
Commit: run git status --porcelain against the project root — this catches MCP side-effect writes (e.g. add_item and edit_item write to .rex/prd_tree/<slug>/index.md) even when no files were edited directly. If the output is empty, print "Working tree clean — nothing to commit." and stop. Otherwise stage all changes with git add -A and commit with the n-dx authorship + model audit trailer block via a HEREDOC:
git commit -m "$(cat <<'EOF'
ndx-capture: add '<title>' to PRD
N-DX: skill/ndx-capture
Co-Authored-By: En Dash's n-dx <n-dx@endash.us>
EOF
)"
Substitute <title> with the captured item title. Keep the N-DX: and Co-Authored-By: trailer lines exactly as shown — they form the audit trail used by downstream tooling.
blockedBy edges.