From nightshift
Starts or resumes a Nightshift shift, running autonomous orchestration of tasks from a CSV table with pre-flight checks and manager subagent.
How this skill is triggered — by the user, by Claude, or both
Slash command
/nightshift:startmanagerThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Execute Nightshift shift `$ARGUMENTS`.
Execute Nightshift shift $ARGUMENTS.
Run the bundled pre-flight script to check shift state and emit a JSON summary:
${CLAUDE_SKILL_DIR}/scripts/preflight.sh $ARGUMENTS
If the pre-flight reports any of these conditions, stop without forking the manager and report the message back to the user:
error: shift_not_found → "Shift $ARGUMENTS does not exist. Use /nightshift:create $ARGUMENTS first."error: no_items → "Shift $ARGUMENTS has no items. Use /nightshift:update-table $ARGUMENTS to add items."error: no_tasks → "Shift $ARGUMENTS has no tasks. Use /nightshift:add-task $ARGUMENTS to add tasks."status: complete → "Shift $ARGUMENTS is already complete. Use /nightshift:archive $ARGUMENTS to archive it."${CLAUDE_SKILL_DIR}/scripts/preflight.sh $ARGUMENTS --human
Read the manager.md and table.csv inside .nightshift/$ARGUMENTS/. Process all remaining items autonomously following the orchestration logic in your system prompt.
.nightshift/$ARGUMENTS/.nightshift/$ARGUMENTS/manager.md (read for task order, parallel config, disable-self-improvement flag).nightshift/$ARGUMENTS/table.csv (read for item statuses; do not write status transitions — the dev subagent does that).nightshift/$ARGUMENTS/.envRun all todo items to completion (or failure after retries), apply step improvements as you go, and emit the final shift-complete summary when done.
npx claudepluginhub johndaskovsky/nightshift --plugin nightshiftExecutes a single Nightshift task on one item with self-validation and retry. Useful for batch processing workflows with structured results.
Framework for long-running, multi-session autonomous agent tasks with progress checkpointing, failure recovery, and task dependency management. Maintains append-only progress logs and checkpoint files for recovery across context window resets.
Runs and resumes Spacedock workflows: discovers workflows, dispatches packaged workers, manages approval gates, and advances entity state. Invoke directly for single-entity processing.