一键导入
opsx-new
Start a new change using the experimental artifact workflow (OPSX)
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Start a new change using the experimental artifact workflow (OPSX)
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Reset the OpenRegister development environment (stop, remove volumes, restart, install apps)
Create a Pull Request from the current branch — runs local checks, picks target branch, and opens the PR on GitHub
Analyze a project's OpenSpec from 8 persona perspectives and suggest additional features
Iteratively run apply→verify in a loop until verify passes, then auto-archive — runs per-app in Docker context
Implement tasks from an OpenSpec change (Experimental)
Archive a completed change in the experimental workflow
| name | opsx-new |
| description | Start a new change using the experimental artifact workflow (OPSX) |
| metadata | {"category":"Workflow","tags":["workflow","artifacts","experimental"]} |
Start a new change using the experimental artifact-driven approach.
Input: The argument after /opsx-new is the change name (kebab-case), OR a description of what the user wants to build.
Steps
If no input provided, ask what they want to build
Use the AskUserQuestion tool (open-ended, no preset options) to ask:
"What change do you want to work on? Describe what you want to build or fix."
From their description, derive a kebab-case name (e.g., "add user authentication" → add-user-auth).
IMPORTANT: Do NOT proceed without understanding what the user wants to build.
Determine the workflow schema
Use the default schema (omit --schema) unless the user explicitly requests a different workflow.
Use a different schema only if the user mentions:
--schema <name>openspec schemas --json and let them chooseOtherwise: Omit --schema to use the default.
Load architectural context
Before creating the change, silently read all applicable ADRs. These inform what is architecturally possible and constrain the proposal scope.
| Location | What | When |
|---|---|---|
openspec/changes/<name>/context-brief.md | Specter intelligence brief — features, stories, stakeholders, schemas | If present — this is the primary input |
openspec/architecture/adr-*.md | Repo-specific ADRs (data model, workflows, security) | Always check |
.claude/openspec/architecture/adr-*.md | Company-wide ADRs (13 Conduction-wide decisions) | Always load |
docs/ARCHITECTURE.md | App-specific technology decisions | If present |
docs/FEATURES.md | Feature tiers and roadmap phases | If present |
Read these silently — do not list them to the user. If a context-brief.md exists for this change, it contains market-researched intelligence data. Use it as the primary source for the change description — do not ask the user what to build when the brief already describes it.
Use them to inform the change name validation (e.g., if the user asks for something that contradicts an ADR, flag it).
Create the change directory
openspec new change "<name>"
Add --schema <name> only if the user requested a specific workflow.
This creates a scaffolded change at openspec/changes/<name>/ with the selected schema.
Show the artifact status
openspec status --change "<name>"
This shows which artifacts need to be created and which are ready (dependencies satisfied).
Get instructions for the first artifact The first artifact depends on the schema. Check the status output to find the first artifact with status "ready".
openspec instructions <first-artifact-id> --change "<name>"
This outputs the template and context for creating the first artifact.
Ask how to proceed
After showing the status and first artifact template, use AskUserQuestion to ask:
"Change
<name>is ready. How would you like to proceed?"
Options:
/opsx-ff <name>) — fastest path to implementation; I'll create proposal, specs, design, and tasks in one go/opsx-continue <name>) — more control; you review and approve each artifact before the next/opsx-explore) — explore ideas, constraints, and approach before committing to a direction/opsx-continue <name>Output
After completing the steps, summarize:
Guardrails
/opsx-continue instead