Workflow Mode Guard
Use this skill only when the active local workflow mode is speckit.
Before proceeding:
- Run
./scripts/hooks/workflow-mode.sh status.
- If the active mode is
superpowers, stop and tell the user to switch with make workflow-use mode=speckit or continue with the Superpowers workflow instead.
- Do not mix
speckit-* commands with Superpowers workflow skills in the same session or worktree.
User Input
$ARGUMENTS
You MUST consider the user input before proceeding (if not empty).
Scope Guard
This command's own work is limited to updating the project constitution itself. Dependent templates
and commands read the constitution at runtime and are not modified here.
- Classify every part of the user input as either constitution content or a separate,
non-governance intent.
- If the input includes feature implementation, code generation, refactoring, building, or
deployment requests, you MUST NOT execute them. Extract them as deferred intents instead.
- You MUST NOT create, modify, or delete application source files, feature routes,
components, tests, deployment files, or other artifacts unrelated to the constitution
workflow.
- If it is unclear whether an instruction is constitution content, ask for clarification before
making changes.
- After completing the constitution update, include a
Next Actions section for each deferred
intent. List the original intent and suggest the appropriate follow-up Spec Kit command, such
as /speckit-specify, without invoking it.
- If there are no non-governance intents, omit the
Next Actions section.
Pre-Execution Checks
Check for extension hooks (before constitution update):
- Check if
.specify/extensions.yml exists in the project root.
- If it exists, read it and look for entries under the
hooks.before_constitution key
- If the YAML cannot be parsed or is invalid, skip hook checking silently and continue normally
- Filter out hooks where
enabled is explicitly false. Treat hooks without an enabled field as enabled by default.
- For each remaining hook, do not attempt to interpret or evaluate hook
condition expressions:
- If the hook has no
condition field, or it is null/empty, treat the hook as executable
- If the hook defines a non-empty
condition, skip the hook and leave condition evaluation to the HookExecutor implementation
- When constructing command invocations from hook command names, replace dots (
.) with hyphens (-). For example, speckit.git.commit → /speckit-git-commit.
- For each executable hook, output the following based on its
optional flag:
- Optional hook (
optional: true):## Extension Hooks
**Optional Pre-Hook**: {extension}
Command: `/{command}`
Description: {description}
Prompt: {prompt}
To execute: `/{command}`
- Mandatory hook (
optional: false):## Extension Hooks
**Automatic Pre-Hook**: {extension}
Executing: `/{command}`
EXECUTE_COMMAND: {command}
Wait for the result of the hook command before proceeding to the Outline.
After emitting the block above you MUST actually invoke the hook and wait for it to finish before continuing. Run it the same way you would run the command yourself in this agent/session (the invocation may differ from the literal {command} id shown above, e.g. a skills-mode agent runs it as /skill:speckit-... or $speckit-...). Emitting the block alone does not run the hook.
- If no hooks are registered or
.specify/extensions.yml does not exist, skip silently
Outline
You are updating the project constitution at .specify/memory/constitution.md. The active
constitution scaffold is resolved at command time from constitution-template through the Spec Kit
preset/template resolution stack.
Follow this execution flow:
Run python3 .specify/scripts/python/resolve_template.py constitution-template --json from the repository root and parse TEMPLATE_CONTENT as the active template.
- The shared resolver applies project overrides, composing preset layers, and extension layers
before the core template fallback. It MUST succeed before continuing.
- If it fails, stop and report the resolution error; do not continue with only one contributing
template layer.
- If
.specify/memory/constitution.md exists, load it as the source of current project-specific
values and amendments. Preserve information that is still applicable when applying the newly
resolved scaffold.
- If it does not exist, use the resolved template as the initial document.
- Do not write back to any versioned template layer.
- Identify every placeholder token of the form
[ALL_CAPS_IDENTIFIER].
IMPORTANT: The user might require less or more principles than the ones used in the template. If a number is specified, respect that - follow the general template. You will update the doc accordingly.
Collect/derive values for placeholders:
- If user input (conversation) supplies a value, use it.
- Otherwise infer from existing repo context (README, docs, prior constitution versions if embedded).
- For governance dates:
RATIFICATION_DATE is the original adoption date (if unknown ask or mark TODO), LAST_AMENDED_DATE is today if changes are made, otherwise keep previous.
CONSTITUTION_VERSION must increment according to semantic versioning rules:
- MAJOR: Backward incompatible governance/principle removals or redefinitions.
- MINOR: New principle/section added or materially expanded guidance.
- PATCH: Clarifications, wording, typo fixes, non-semantic refinements.
- If version bump type ambiguous, propose reasoning before finalizing.
Draft the updated constitution content using the resolved template as the required structure:
- Replace every placeholder with concrete text (no bracketed tokens left except intentionally retained template slots that the project has chosen not to define yet—explicitly justify any left).
- Preserve heading hierarchy and comments can be removed once replaced unless they still add clarifying guidance.
- Ensure each Principle section: succinct name line, paragraph (or bullet list) capturing non‑negotiable rules, explicit rationale if not obvious.
- Ensure Governance section lists amendment procedure, versioning policy, and compliance review expectations.
Produce a Sync Impact Report (prepend as an HTML comment at top of the constitution file after update):
- Version change: old → new
- List of modified principles (old title → new title if renamed)
- Added sections
- Removed sections
- Follow-up TODOs if any placeholders intentionally deferred.
Validation before final output:
- No remaining unexplained bracket tokens.
- Version line matches report.
- Dates ISO format YYYY-MM-DD.
- Principles are declarative, testable, and free of vague language ("should" → replace with MUST/SHOULD rationale where appropriate).
Write the completed constitution back to .specify/memory/constitution.md (overwrite).
Output a final summary to the user with:
- New version and bump rationale.
- Any TODO placeholders or deferred items requiring manual follow-up.
- Suggested commit message (e.g.,
docs: amend constitution to vX.Y.Z (principle additions + governance update)).
- A
Next Actions section for any deferred non-governance intents.
Formatting & Style Requirements:
- Use Markdown headings exactly as in the template (do not demote/promote levels).
- Wrap long rationale lines to keep readability (<100 chars ideally) but do not hard enforce with awkward breaks.
- Keep a single blank line between sections.
- Avoid trailing whitespace.
If the user supplies partial updates (e.g., only one principle revision), still perform validation and version decision steps.
If critical info missing (e.g., ratification date truly unknown), insert TODO(<FIELD_NAME>): explanation and include in the Sync Impact Report under deferred items.
Write only .specify/memory/constitution.md; do not create or modify template source files.
Post-Execution Checks
Check for extension hooks (after constitution update):
Check if .specify/extensions.yml exists in the project root.
- If it exists, read it and look for entries under the
hooks.after_constitution key
- If the YAML cannot be parsed or is invalid, skip hook checking silently and continue normally
- Filter out hooks where
enabled is explicitly false. Treat hooks without an enabled field as enabled by default.
- For each remaining hook, do not attempt to interpret or evaluate hook
condition expressions:
- If the hook has no
condition field, or it is null/empty, treat the hook as executable
- If the hook defines a non-empty
condition, skip the hook and leave condition evaluation to the HookExecutor implementation
- When constructing command invocations from hook command names, replace dots (
.) with hyphens (-). For example, speckit.git.commit → /speckit-git-commit.
- For each executable hook, output the following based on its
optional flag:
- Optional hook (
optional: true):## Extension Hooks
**Optional Hook**: {extension}
Command: `/{command}`
Description: {description}
Prompt: {prompt}
To execute: `/{command}`
- Mandatory hook (
optional: false):## Extension Hooks
**Automatic Hook**: {extension}
Executing: `/{command}`
EXECUTE_COMMAND: {command}
After emitting the block above you MUST actually invoke the hook and wait for it to finish before continuing. Run it the same way you would run the command yourself in this agent/session (the invocation may differ from the literal {command} id shown above, e.g. a skills-mode agent runs it as /skill:speckit-... or $speckit-...). Emitting the block alone does not run the hook.
- If no hooks are registered or
.specify/extensions.yml does not exist, skip silently
1---2name: speckit-constitution3description: Create or update the project constitution from interactive or provided principle inputs.4---56## Workflow Mode Guard78Use this skill only when the active local workflow mode is `speckit`.910Before proceeding:1112- Run `./scripts/hooks/workflow-mode.sh status`.13- If the active mode is `superpowers`, stop and tell the user to switch with `make workflow-use mode=speckit` or continue with the Superpowers workflow instead.14- Do not mix `speckit-*` commands with Superpowers workflow skills in the same session or worktree.151617## User Input1819```text20$ARGUMENTS21```2223You **MUST** consider the user input before proceeding (if not empty).2425## Scope Guard2627This command's own work is limited to updating the project constitution itself. Dependent templates28and commands read the constitution at runtime and are not modified here.2930- Classify every part of the user input as either constitution content or a separate,31 non-governance intent.32- If the input includes feature implementation, code generation, refactoring, building, or33 deployment requests, you **MUST NOT** execute them. Extract them as deferred intents instead.34- You **MUST NOT** create, modify, or delete application source files, feature routes,35 components, tests, deployment files, or other artifacts unrelated to the constitution36 workflow.37- If it is unclear whether an instruction is constitution content, ask for clarification before38 making changes.39- After completing the constitution update, include a `Next Actions` section for each deferred40 intent. List the original intent and suggest the appropriate follow-up Spec Kit command, such41 as `/speckit-specify`, without invoking it.42- If there are no non-governance intents, omit the `Next Actions` section.4344## Pre-Execution Checks4546**Check for extension hooks (before constitution update)**:47- Check if `.specify/extensions.yml` exists in the project root.48- If it exists, read it and look for entries under the `hooks.before_constitution` key49- If the YAML cannot be parsed or is invalid, skip hook checking silently and continue normally50- Filter out hooks where `enabled` is explicitly `false`. Treat hooks without an `enabled` field as enabled by default.51- For each remaining hook, do **not** attempt to interpret or evaluate hook `condition` expressions:52 - If the hook has no `condition` field, or it is null/empty, treat the hook as executable53 - If the hook defines a non-empty `condition`, skip the hook and leave condition evaluation to the HookExecutor implementation54- When constructing command invocations from hook command names, replace dots (`.`) with hyphens (`-`). For example, `speckit.git.commit` → `/speckit-git-commit`.55- For each executable hook, output the following based on its `optional` flag:56 - **Optional hook** (`optional: true`):57 ```58 ## Extension Hooks5960 **Optional Pre-Hook**: {extension}61 Command: `/{command}`62 Description: {description}6364 Prompt: {prompt}65 To execute: `/{command}`66 ```67 - **Mandatory hook** (`optional: false`):68 ```69 ## Extension Hooks7071 **Automatic Pre-Hook**: {extension}72 Executing: `/{command}`73 EXECUTE_COMMAND: {command}7475 Wait for the result of the hook command before proceeding to the Outline.76 ```77 After emitting the block above you MUST actually invoke the hook and wait for it to finish before continuing. Run it the same way you would run the command yourself in this agent/session (the invocation may differ from the literal `{command}` id shown above, e.g. a skills-mode agent runs it as `/skill:speckit-...` or `$speckit-...`). Emitting the block alone does not run the hook.78- If no hooks are registered or `.specify/extensions.yml` does not exist, skip silently7980## Outline8182You are updating the project constitution at `.specify/memory/constitution.md`. The active83constitution scaffold is resolved at command time from `constitution-template` through the Spec Kit84preset/template resolution stack.8586Follow this execution flow:87881. Run `python3 .specify/scripts/python/resolve_template.py constitution-template --json` from the repository root and parse `TEMPLATE_CONTENT` as the active template.89 - The shared resolver applies project overrides, composing preset layers, and extension layers90 before the core template fallback. It MUST succeed before continuing.91 - If it fails, stop and report the resolution error; do not continue with only one contributing92 template layer.93 - If `.specify/memory/constitution.md` exists, load it as the source of current project-specific94 values and amendments. Preserve information that is still applicable when applying the newly95 resolved scaffold.96 - If it does not exist, use the resolved template as the initial document.97 - Do not write back to any versioned template layer.98 - Identify every placeholder token of the form `[ALL_CAPS_IDENTIFIER]`.99 **IMPORTANT**: The user might require less or more principles than the ones used in the template. If a number is specified, respect that - follow the general template. You will update the doc accordingly.1001012. Collect/derive values for placeholders:102 - If user input (conversation) supplies a value, use it.103 - Otherwise infer from existing repo context (README, docs, prior constitution versions if embedded).104 - For governance dates: `RATIFICATION_DATE` is the original adoption date (if unknown ask or mark TODO), `LAST_AMENDED_DATE` is today if changes are made, otherwise keep previous.105 - `CONSTITUTION_VERSION` must increment according to semantic versioning rules:106 - MAJOR: Backward incompatible governance/principle removals or redefinitions.107 - MINOR: New principle/section added or materially expanded guidance.108 - PATCH: Clarifications, wording, typo fixes, non-semantic refinements.109 - If version bump type ambiguous, propose reasoning before finalizing.1101113. Draft the updated constitution content using the resolved template as the required structure:112 - Replace every placeholder with concrete text (no bracketed tokens left except intentionally retained template slots that the project has chosen not to define yet—explicitly justify any left).113 - Preserve heading hierarchy and comments can be removed once replaced unless they still add clarifying guidance.114 - Ensure each Principle section: succinct name line, paragraph (or bullet list) capturing non‑negotiable rules, explicit rationale if not obvious.115 - Ensure Governance section lists amendment procedure, versioning policy, and compliance review expectations.1161174. Produce a Sync Impact Report (prepend as an HTML comment at top of the constitution file after update):118 - Version change: old → new119 - List of modified principles (old title → new title if renamed)120 - Added sections121 - Removed sections122 - Follow-up TODOs if any placeholders intentionally deferred.1231245. Validation before final output:125 - No remaining unexplained bracket tokens.126 - Version line matches report.127 - Dates ISO format YYYY-MM-DD.128 - Principles are declarative, testable, and free of vague language ("should" → replace with MUST/SHOULD rationale where appropriate).1291306. Write the completed constitution back to `.specify/memory/constitution.md` (overwrite).1311327. Output a final summary to the user with:133 - New version and bump rationale.134 - Any TODO placeholders or deferred items requiring manual follow-up.135 - Suggested commit message (e.g., `docs: amend constitution to vX.Y.Z (principle additions + governance update)`).136 - A `Next Actions` section for any deferred non-governance intents.137138Formatting & Style Requirements:139140- Use Markdown headings exactly as in the template (do not demote/promote levels).141- Wrap long rationale lines to keep readability (<100 chars ideally) but do not hard enforce with awkward breaks.142- Keep a single blank line between sections.143- Avoid trailing whitespace.144145If the user supplies partial updates (e.g., only one principle revision), still perform validation and version decision steps.146147If critical info missing (e.g., ratification date truly unknown), insert `TODO(<FIELD_NAME>): explanation` and include in the Sync Impact Report under deferred items.148149Write only `.specify/memory/constitution.md`; do not create or modify template source files.150151## Post-Execution Checks152153**Check for extension hooks (after constitution update)**:154Check if `.specify/extensions.yml` exists in the project root.155- If it exists, read it and look for entries under the `hooks.after_constitution` key156- If the YAML cannot be parsed or is invalid, skip hook checking silently and continue normally157- Filter out hooks where `enabled` is explicitly `false`. Treat hooks without an `enabled` field as enabled by default.158- For each remaining hook, do **not** attempt to interpret or evaluate hook `condition` expressions:159 - If the hook has no `condition` field, or it is null/empty, treat the hook as executable160 - If the hook defines a non-empty `condition`, skip the hook and leave condition evaluation to the HookExecutor implementation161- When constructing command invocations from hook command names, replace dots (`.`) with hyphens (`-`). For example, `speckit.git.commit` → `/speckit-git-commit`.162- For each executable hook, output the following based on its `optional` flag:163 - **Optional hook** (`optional: true`):164 ```165 ## Extension Hooks166167 **Optional Hook**: {extension}168 Command: `/{command}`169 Description: {description}170171 Prompt: {prompt}172 To execute: `/{command}`173 ```174 - **Mandatory hook** (`optional: false`):175 ```176 ## Extension Hooks177178 **Automatic Hook**: {extension}179 Executing: `/{command}`180 EXECUTE_COMMAND: {command}181 ```182 After emitting the block above you MUST actually invoke the hook and wait for it to finish before continuing. Run it the same way you would run the command yourself in this agent/session (the invocation may differ from the literal `{command}` id shown above, e.g. a skills-mode agent runs it as `/skill:speckit-...` or `$speckit-...`). Emitting the block alone does not run the hook.183- If no hooks are registered or `.specify/extensions.yml` does not exist, skip silently