sentrix initiative
Create and manage cross-app initiatives.
sentrix initiative
Create and manage cross-app initiatives. Initiatives are high-level goals that group related requirements under a shared objective.
Subcommands#
sentrix initiative new#
Create a new initiative document using AI.
Aliases: write, create
Usage#
sentrix initiative new --description <description>
Options#
| Flag | Type | Required | Description |
|---|---|---|---|
--description | string | Yes | Natural language description of the initiative. |
Example#
sentrix initiative new --description "Improve developer onboarding experience across all apps"
This generates an initiative document at plans/initiatives/<YYYY-MM>/<issue-name>/00-initiative.md and syncs it to the Sentrix API.
sentrix initiative assign#
Link a requirements document to an initiative.
Usage#
sentrix initiative assign --initiative <path> --requirements <path>
Options#
| Flag | Type | Required | Description |
|---|---|---|---|
--initiative | path | Yes | Path to the initiative file. |
--requirements | path | Yes | Path to a directory containing 00-requirements.md, or a direct path to the requirements file. |
Requirements in plans/backlog/ cannot be assigned — they must be activated first.
Example#
sentrix initiative assign \
--initiative plans/initiatives/2026-02/feature-onboarding/00-initiative.md \
--requirements plans/website/2026-02/feature-guided-tour/
sentrix initiative unassign#
Remove a requirements document from an initiative.
Usage#
sentrix initiative unassign --initiative <path> --requirements <path>
Options#
| Flag | Type | Required | Description |
|---|---|---|---|
--initiative | path | Yes | Path to the initiative file. |
--requirements | path | Yes | Path to a directory containing 00-requirements.md, or a direct path to the requirements file. |
Requirements in plans/backlog/ cannot be unassigned — they must be activated first.
Example#
sentrix initiative unassign \
--initiative plans/initiatives/2026-02/feature-onboarding/00-initiative.md \
--requirements plans/website/2026-02/feature-guided-tour/
sentrix initiative delete#
Delete an initiative.
Usage#
sentrix initiative delete <target>
Arguments#
| Argument | Type | Required | Description |
|---|---|---|---|
target | path | Yes | Path to the initiative file. |
Without --force, the command fails if the initiative has assigned requirements. With --force, it cascade-deletes the initiative and archives all associated requirements and their plans.
Examples#
Delete an initiative with no assigned requirements:
sentrix initiative delete plans/initiatives/2026-02/feature-onboarding/00-initiative.md
Force-delete an initiative and cascade-archive all associated requirements and plans:
sentrix initiative delete plans/initiatives/2026-02/feature-onboarding/00-initiative.md --force