with one click
task
Work on a task from project DB; track plan steps.
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Work on a task from project DB; track plan steps.
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Query/store cross-project knowledge in Shared Brain.
Save session snapshot — handoff + CLAUDE.md update.
Create a standardized git commit.
Debug a bug — reproduce, isolate root cause, fix.
End session — handoff + decisions + CLAUDE.md.
Time-boxed SENAR investigation before a task.
Based on SOC occupation classification
| name | task |
| description | Work on a task from project DB; track plan steps. |
| effort | fast |
| context | inline |
Work on tasks from project DB.
STRICT: Never start coding without running task start first.
Activate task (QG-0 enforced — NO --force):
.tausik/tausik task start {slug}
If QG-0 fails (missing goal or acceptance criteria):
.tausik/tausik task update {slug} --goal "..." --acceptance-criteria "...".tausik/tausik task start {slug}Load task context:
.tausik/tausik task show {slug}
Extract: goal, acceptance criteria, plan steps, role, complexity, stack.
Load role & stack context:
harness/roles/{role}.md to understand focus and priorities for this roleharness/stacks/{stack}.md if stack is set — follow stack-specific conventionstausik_memory_search with task title keywordstausik_decisions_list — recent decisionstausik_memory_list with type=dead_end3.5. Brain primer (cross-project, 1.4+). If tausik-brain MCP is configured, run one brain_search for patterns and one for gotchas, scoped to the task's topic + stack. Skip silently if brain is disabled.
brain_search(
query="<task title keywords> <stack tag>",
category="patterns",
limit=3
)
brain_search(
query="<task title keywords> <stack tag>",
category="gotchas",
limit=3
)
Surface up to 3 patterns + 3 gotchas inline before announcing the task. Filter out any page id that appears in tausik_memory_list type=convention with title brain.ignored:<id> — the user already dismissed it. If a result misleads, mark it ignored via tausik_memory_quick(type="convention", title="brain.ignored:<page_id>", content="…") so it does not return next session.
Adopt role from task — follow the role profile's skill modifiers for /task.
Announce: Display to user:
Begin working through the plan steps sequentially.
.tausik/tausik task log {slug} "Step N done: description" + .tausik/tausik task step {slug} Ntausik_reason_step (kind = intent | premise |
action | verification). See /reason for the full cycle. This is a
soft nudge with escalation, never a gate:
/reason once, lightly.reason-step chain makes this task replayable")..tausik/tausik dead-end "What was tried" "Why it failed" --task {slug}
Then try an alternative approach.When all steps complete — suggest /ship:
"All plan steps done. Run
/shipto review, test, and close the task."
Do NOT suggest /task done directly — /ship is the standard closing path with full quality checks.
Redirect to /ship — the single path for closing tasks with full quality checks.
Find active task:
Use tausik_task_list MCP tool with status=active.
Check for uncommitted changes:
git status --short
Redirect:
/ship — full review + test + commit cycle." Then execute the /ship skill.tausik_task_show with slug={slug}tausik_task_log with slug={slug}, message="AC verified: 1. [criterion] ✓ [evidence] 2. ..."tausik_verify with task_slug={slug} to seed the cache. If verify fails, fix and retry — do NOT proceed to close.tausik_task_done with slug={slug}, ac_verified=true, relevant_files=[...] — instant cache lookup, returns structured stage + blocking_failures JSON for clean error handling.tausik_task_done with the same arguments — v1 raises a single aggregated error string (1.4 behaviour); iterate fixes, do not silently re-call.Why redirect? /ship runs full /review + /test + gates + commit. Closing without review violates SENAR Rule 9.15 (AI Output QA).
Show all tasks:
.tausik/tausik task list
Display as a formatted table with slug, title, status, and complexity.
Mark plan step N as done on the current active task:
.tausik/tausik task step {slug} N
Find the active task slug first if not obvious from context:
.tausik/tausik task list --status active
Log progress: .tausik/tausik task log {slug} "Step N completed: description"
Show current active task status:
.tausik/tausik task list --status active
If one active task — show its details with task show {slug}.
If none — suggest picking one from planning tasks.
Prefer MCP tools over CLI bash calls. Exact parameter names:
| MCP Tool | Required Params | Optional Params |
|---|---|---|
tausik_task_start | slug | — |
tausik_task_done (preferred, v1.4+) | slug | ac_verified=true, relevant_files=["f1.py"], evidence, no_knowledge=true — returns structured JSON |
tausik_task_done (legacy fallback) | slug | same args; raises aggregated error string on failure |
tausik_task_log | slug, message | — |
tausik_task_step | slug, step_num (1-based int) | — |
tausik_task_show | slug | — |
tausik_task_list | — | status="active", epic, story, stack, role, limit |
tausik_task_update | slug | goal, acceptance_criteria, scope, scope_exclude, complexity, stack, role, notes |
tausik_reason_step | slug, kind, content | — (kind: intent|premise|action|verification — advisory RENAR trace) |
tausik_dead_end | approach, reason | task_slug, tags=["tag"] |
tausik_memory_search | query | — |
tausik_memory_list | — | type="dead_end", limit |
After approximately 45 tool calls during a task, remind the user:
"Consider /checkpoint to save context — SENAR recommends checkpoints every 30-50 tool calls."
When investigating code for a task, prefer the cheapest tool that fits:
mcp__codebase-rag__search_code — first choice for symbols, patterns, "where is X used", "how does Y work". Returns ranked chunks, not full files. Cheapest token-wise.Grep — only when you already know which file(s) to search in, or when RAG is empty/stale.Read — only when you have an exact path. Don't Read unfamiliar code — use search_code first to locate the relevant chunks.task update. No shortcuts.tausik_dead_end MCP tool immediately.task start on a second task will fail unless the first is done/blocked.task step is 1-indexed, not 0-indexed. Step numbers must match the plan.task done is gated by plan steps — all steps must be marked done.task log before task step — log provides context, step just marks completion.