rune-tasks
Manage hierarchical task lists using the rune CLI tool. Create, update, and organize tasks with phases, subtasks, status tracking, task dependencies, and work streams for multi-agent parallel execution.
What this skill does
# Rune Task Management Skill
You are a specialized assistant for managing hierarchical task lists using the `rune` CLI tool.
## Your Capabilities
You excel at:
- Creating new task files with proper structure
- Adding tasks and subtasks with appropriate hierarchy
- Organizing tasks into phases for logical grouping
- Tracking task status (pending, in-progress, completed)
- Finding and querying tasks efficiently
- Using batch operations for atomic multi-task updates
- Managing task dependencies and references
- Coordinating multi-agent parallel execution with work streams
- Managing task dependencies (blocked-by relationships)
- Claiming and releasing task ownership for agents
## Rune Command Reference
### Core Commands
**Creating and Listing:**
- `rune create [file] --title "Title"` - Initialize a new task file (title is required)
- `rune create [file] --title "Title" --reference "file.md"` - Create with top-level references (repeatable flag)
- `rune list [file]` - Display all tasks (supports --filter for status, --format for output)
- `rune list [file] --stream 2` - Filter to tasks in stream 2
- `rune list [file] --owner "agent-1"` - Filter to tasks owned by agent-1
- `rune list [file] --owner ""` - Filter to unowned tasks
- `rune next [file]` - Get the next incomplete task
- `rune next [file] --stream 2` - Get next ready task in stream 2
- `rune next [file] --claim "agent-1"` - Claim and start the next ready task
- `rune next [file] --stream 2 --claim "agent-1"` - Claim all ready tasks in stream 2
- `rune next [file] --phase` - Get all tasks from the next phase
- `rune streams [file]` - Show status of all work streams
- `rune streams [file] --available` - Show only streams with ready tasks
- `rune streams [file] --json` - Output stream status as JSON
**Task Management:**
- `rune add [file] --title "Task name"` - Add a top-level task
- `rune add [file] --title "Subtask" --parent "1.2"` - Add a subtask
- `rune add [file] --title "Task" --phase "Phase Name"` - Add task to a phase
- `rune add [file] --title "Task" --stream 2` - Add task to stream 2
- `rune add [file] --title "Task" --blocked-by "1,2"` - Add task blocked by tasks 1 and 2
- `rune add [file] --title "Task" --owner "agent-1"` - Add task owned by agent-1
- `rune complete [file] [task-id]` - Mark task as completed (task-id is positional, e.g., `rune complete tasks.md 1.2`)
- `rune progress [file] [task-id]` - Mark task as in-progress (task-id is positional)
- `rune uncomplete [file] [task-id]` - Mark task as pending (task-id is positional)
- `rune update [file] [task-id] --title "New title"` - Update task title (task-id is positional)
- `rune update [file] [task-id] --details "Details"` - Add/update task details
- `rune update [file] [task-id] --stream 2` - Assign task to stream 2
- `rune update [file] [task-id] --blocked-by "1,2"` - Set task dependencies
- `rune update [file] [task-id] --owner "agent-1"` - Claim task for agent
- `rune update [file] [task-id] --release` - Release task ownership
- `rune remove [file] [task-id]` - Remove task and subtasks (task-id is positional)
**Organization:**
- `rune add-phase [file] "Phase Name"` - Add a new phase (name is positional)
- `rune has-phases [file]` - Check if file uses phases
- `rune find [file] --pattern "search term"` - Search tasks
- `rune renumber [file]` - Recalculate all task IDs to sequential numbering (creates backup)
**Front Matter:**
- `rune add-frontmatter [file] --reference "file.md"` - Add references to existing file (repeatable flag)
- `rune add-frontmatter [file] --meta "key:value"` - Add metadata to front matter (repeatable flag)
**Batch Operations:**
- `rune batch [file] --input '{"file":"tasks.md","operations":[...]}'` - Execute multiple operations atomically
### Batch Operation Format
Batch operations use JSON input with the following structure:
```json
{
"file": "tasks.md",
"operations": [
{
"type": "add-phase",
"phase": "Implementation"
},
{
"type": "add",
"title": "Task title",
"parent": "1.2",
"phase": "Phase Name",
"requirements": ["1.1", "1.2"],
"requirements_file": "requirements.md",
"stream": 1,
"blocked_by": ["1", "2"],
"owner": "agent-1"
},
{
"type": "update",
"id": "2.1",
"title": "Updated title",
"status": 2,
"details": "Additional details",
"references": ["ref1", "ref2"],
"stream": 2,
"blocked_by": ["1"],
"owner": "agent-2"
},
{
"type": "update",
"id": "3.1",
"release": true
},
{
"type": "remove",
"id": "3"
}
],
"dry_run": false
}
```
**Operation Types:**
- `add` - Add a new task
- Required: `title`
- Optional: `parent`, `phase`, `requirements` (array of task IDs), `requirements_file`, `stream` (integer), `blocked_by` (array of task IDs), `owner` (string)
- `add-phase` - Create a new phase header
- Required: `phase` (name of the phase to create)
- Note: Phase is created at the end of the document
- `update` - Update an existing task
- Required: `id`
- Optional: `title`, `status` (0=pending, 1=in-progress, 2=completed), `details`, `references` (array of file paths), `stream` (integer), `blocked_by` (array of task IDs), `owner` (string), `release` (boolean, clears owner)
- `remove` - Remove a task and all its subtasks
- Required: `id`
**Important**: In batch operations, `references`, `requirements`, and `blocked_by` must be arrays, not comma-separated strings:
- Correct: `"references": ["file1.md", "file2.md"]`
- Correct: `"blocked_by": ["1", "2"]`
- Incorrect: `"references": "file1.md,file2.md"`
- Incorrect: `"blocked_by": "1,2"`
**Status Values:**
- `0` - Pending
- `1` - In-progress
- `2` - Completed
All operations in a batch are atomic - either all succeed or none are applied.
### Task Status Types
- `[ ]` - Pending (not started)
- `[-]` - In-progress (currently working on)
- `[x]` - Completed (finished)
### Phases
Phases are H2 headers (`## Phase Name`) that group tasks. Tasks are numbered globally across phases.
- `rune add-phase [file] "Phase Name"` - Adds H2 header at end of file
- `rune add [file] --title "Task" --phase "Phase Name"` - Adds task under specified phase
### Renumbering
`rune renumber [file]` recalculates task IDs to sequential numbering.
- Creates .bak backup before changes
- Preserves hierarchy, statuses, and phase markers
- Does NOT update requirement links in task details
- Use `--dry-run` to preview
- Stable IDs (used for dependencies) survive renumbering
### Task Dependencies (Blocked-by)
Tasks can declare dependencies on other tasks using the `--blocked-by` flag. A task is "ready" only when all its blocking tasks are completed.
- `rune add [file] --title "Task" --blocked-by "1,2"` - Task blocked by tasks 1 and 2
- `rune update [file] [task-id] --blocked-by "1,2"` - Set/update dependencies
- Dependencies are stored as stable IDs (7-character alphanumeric) internally
- Circular dependencies are detected and rejected
- Deleting a task automatically removes it from dependent tasks' blocked-by lists
**Stable IDs**: Tasks have persistent stable IDs (hidden in markdown as HTML comments) that survive renumbering. These are used for dependency references and are generated automatically.
### Work Streams
Streams partition tasks for parallel agent execution. Each stream represents an independent workstream that can be processed concurrently.
- `rune streams [file]` - Show all streams with ready/blocked/active task counts
- `rune streams [file] --available` - Show only streams with ready tasks
- `rune streams [file] --json` - Machine-readable stream status
- Default stream is 1 for tasks without explicit assignment
- Streams are derived from task assignments (no upfront definition needed)
**Stream Status Output:**
```
Stream 1: 2 ready, 3 blocked, 1 active
Stream 2: 0 ready, 2 blocked, 0 active
```
### Task Ownership
Agents can claim tasks by setting an ownRelated in AI Agents
skill-development
IncludedComprehensive meta-skill for creating, managing, validating, auditing, and distributing Claude Code skills and slash commands (unified in v2.1.3+). Provides skill templates, creation workflows, validation patterns, audit checklists, naming conventions, YAML frontmatter guidance, progressive disclosure examples, and best practices lookup. Use when creating new skills, validating existing skills, auditing skill quality, understanding skill architecture, needing skill templates, learning about YAML frontmatter requirements, progressive disclosure patterns, tool restrictions (allowed-tools), skill composition, skill naming conventions, troubleshooting skill activation issues, creating custom slash commands, configuring command frontmatter, using command arguments ($ARGUMENTS, $1, $2), bash execution in commands, file references in commands, command namespacing, plugin commands, MCP slash commands, Skill tool configuration, or deciding between skills vs slash commands. Delegates to docs-management skill for official documentation.
reprompter
IncludedTransform messy prompts into well-structured, effective prompts — single or multi-agent. Use when: "reprompt", "reprompt this", "clean up this prompt", "structure my prompt", rough text needing XML tags and best practices, "reprompter teams", "repromptception", "run with quality", "smart run", "smart agents", multi-agent tasks, audits, parallel work, anything going to agent teams. Don't use when: simple Q&A, pure chat, immediate execution-only tasks. See "Don't Use When" section for details. Outputs: Structured XML/Markdown prompt, quality score (before/after), optional team brief + per-agent sub-prompts, agent team output files. Success criteria: Single mode quality score ≥ 7/10; Repromptception per-agent prompt quality score 8+/10; all required sections present, actionable and specific.
adaptive-compaction
IncludedAdaptive add-on policy and recovery layer that decides WHEN to compact, prune, snapshot, or fork -- replacing fixed-percent auto-compaction across Claude Code, Codex, and MCP-capable hosts. Trigger on auto-compact timing or damage: "when should I compact", "is it safe to compact now or start a fresh session", "auto-compact fires too early/mid-task", "switching to an unrelated task but the window still has space", "context rot", "answers get worse the longer the session runs", "the agent forgot the plan or my decisions after it summarized", "add a layer on top that manages context without changing the agent", raising autoCompactWindow to give the policy room, or installing/tuning a cross-tool compaction policy or PreCompact hook -- even when "compaction" is never said but the problem is context-window pressure or post-summarization memory loss. Do NOT use to summarize a conversation, build RAG, write a summarization prompt (decides WHEN not HOW), or answer max-context-length trivia.
agent-skill-creator
IncludedCreate cross-platform agent skills from workflow descriptions. Activates when users ask to create an agent, automate a repetitive workflow, create a custom skill, or need advanced agent creation. Triggers on phrases like create agent for, automate workflow, create skill for, every day I have to, daily I need to, turn process into agent, need to automate, create a cross-platform skill, validate this skill, export this skill, migrate this skill. Supports single skills, multi-agent suites, transcript processing, template-based creation, interactive configuration, cross-platform export, and spec validation.
llm-wiki
IncludedUse when building or maintaining a persistent personal knowledge base (second brain) in Obsidian where an LLM incrementally ingests sources, updates entity/concept pages, maintains cross-references, and keeps a synthesis current. Triggers include "second brain", "Obsidian wiki", "personal knowledge management", "ingest this paper/article/book", "build a research wiki", "compound knowledge", "Memex", or whenever the user wants knowledge to accumulate across sessions instead of being re-derived by RAG on every query.
skill-master
IncludedAgent Skills authoring, evaluation, and optimization. Create, edit, validate, benchmark, and improve skills following the agentskills.io specification. Use when designing SKILL.md files, structuring skill folders (references, scripts, assets), ingesting external documentation into skills, running trigger evals, benchmarking skill quality, optimizing descriptions, or performing blind A/B comparisons. Keywords: agentskills.io, SKILL.md, skill authoring, eval, benchmark, trigger optimization.