Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

cdno action

Manage a project’s next actions: add (optionally as a manifest note), promote a bullet to a note, complete, and list.

cdno action [OPTIONS] <COMMAND>

Subcommands

SubcommandDescription
addAppend a next action to a project
promotePromote a plain bullet to a wikilinked manifest note
completeMark an action done by substring match
listList a project’s open actions

Write subcommands honour --json ({path, message}, non-interactive); list emits its data under --json.


cdno action add

Append a next action to a project. --note also scaffolds a manifest note and wikilinks the bullet.

FlagDescription
--project <SLUG>Project slug.
--title <TITLE>Action title.
--energy <ENERGY>deep, medium, or light.
--noteAlso create a manifest note alongside the bullet and wikilink it.
--var <NAME=VALUE>Value for a custom action-note template’s prompted variable ([variables.prompt]). Repeatable. Only applies with --note (a plain bullet isn’t templated). See Prompted variables.
cdno action add --project surrogate-model --title "Profile the assembly step" --energy medium
cdno action add --project surrogate-model --title "Characterise sample efficiency" --energy deep --note

cdno action promote

Promote an existing plain bullet to a wikilinked manifest note. Substring-matches the bullet text; energy is inherited.

FlagDescription
--project <SLUG>Project slug.
--query <QUERY>Case-insensitive substring of the bullet text.
--var <NAME=VALUE>Value for a custom action-note template’s prompted variable ([variables.prompt]). Repeatable. Promotion scaffolds an action note, so it gathers the same prompts as add --note. See Prompted variables.
cdno action promote --project surrogate-model --query "profile the assembly"

cdno action complete

Mark a next action completed by case-insensitive substring match. A wikilinked bullet also archives its note to actions/_done/<year>/.

FlagDescription
--project <SLUG>Project slug.
--query <QUERY>Substring of the bullet text.
cdno action complete --project surrogate-model --query "feature set B"

cdno action list

List a project’s open action bullets, with attached-note status (active / blocked / completed) inline when present. Honours --json.

FlagDescription
--project <SLUG>Project slug.
cdno action list --project surrogate-model
cdno action list --project surrogate-model --json

add_action, promote_action, complete_action. (Open actions are also visible via get_project_context.)

See also