task
- Repo stars 330
- License MIT
- Author repo claude-skill-registry
Task Management
Manage tasks in .contextium/tasks.json.
Commands
Based on $ARGUMENTS:
task create <id> <description>
Create a new task:
# Read current tasks
cat .contextium/tasks.json
# Add new task using jq (or edit manually)
task complete <id>
Mark a task as completed.
task list
Show all tasks and their status.
task status
Show current task and progress summary.
Task Structure
Each task in tasks.json:
{
"id": "unique-task-id",
"description": "What needs to be done",
"status": "pending|in_progress|completed",
"priority": "low|normal|high",
"scope": ["src/path/*", "tests/path/*"],
"dependencies": ["other-task-id"],
"created": "2024-01-15T10:00:00Z",
"completed": null
}
Workflow
- Create tasks when starting new work
- Set scope to define which files/modules
- Update status as you work
- Complete tasks when done and verified
Integration
Tasks integrate with:
- Task Determiner - Selects next task automatically
- Context Fetcher - Loads context based on task scope
- Harness Pattern - Works with
claude-progress.txt
- Fluxly category
- Data
- Author-declared agents
- No explicit declaration found; this is not inferred or tested compatibility
- Static check
- 94 / 100 · heuristic scan, not runtime safety proof
- Author / version / license
- @majiayu000 · MIT
- Fluxly token estimate
- Lean
- Fluxly setup estimate
- Plug-and-play
- External API key
- No requirement detected
- Detected OS requirements
- Unspecified
- Runtime requirements
- Unspecified
- Detected file/system behavior
-
- Read-only
- Write / modify
- Detected network behavior
- Local-only
- Install commands
- None (reference only)
Profile is derived at build time from SKILL.md and install vectors. Subject to drift from author intent.
Heads up: 未限定 allowed-tools,默认拥有全部工具权限。
The current SKILL.md does not define a fixed output example. Commands
Based on $ARGUMENTS:
task create <id> <description>
Create a new task:
task complete <id>
Mark a task as completed.
task list
Show all tasks and their status.
task status
Show current task and progress summary.
Task Structure
Each task in tasks.json:
# Task Management
Manage tasks in `.contextium/tasks.json`.
## Commands
Based on `$ARGUMENTS`:
### `task create <id> <description>`
Create a new task:
```bash
# Read current tasks
cat .contextium/tasks.json
# Add new task using jq (or edit manually)
```
### `task complete <id>`
Mark a task as completed.
### `task list`
Show all tasks and their status.
### `task status`
Show current task and progress summary.
## Task Structure
Each task in `tasks.json`:
```json
{
"id": "unique-task-id",
"description": "What needs to be done",
"status": "pending|in_progress|completed",
"priority": "low|normal|high",
"scope": ["src/path/*", "tests/path/*"],
"dependencies": ["other-task-id"],
"created": "2024-01-15T10:00:00Z",
"completed": null
}
```
## Workflow
1. **Create tasks** when starting new work
2. **Set scope** to define which files/modules
3. **Update status** as you work
4. **Complete tasks** when done and verified
## Integration
Tasks integrate with:
- **Task Determiner** - Selects next task automatically
- **Context Fetcher** - Loads context based on task scope
- **Harness Pattern** - Works with `claude-progress.txt` Evidence boundary and execution chain
Author text anchors workflow facts; Fluxly only indexes current sections, terms, files, and commands.
sections -> Commands → task create <id> <description> → task complete <id> → task list → task status → Task Structure
terms -> Create tasks · Set scope · Update status · Complete tasks · Task Determiner · Context Fetcher · Harness Pattern
files/cmd -> .contextium/tasks.json · $ARGUMENTS · task create <id> <description> · task complete <id> · task list · task status · tasks.json · claude-progress.txt
body sha256 -> 208a1d870123
Decide Fit First
Design Intent
How To Use It
Boundaries And Review