From hone
Displays progress on incomplete task lists from .plans/tasks-*.yml files: total/completed counts, next actionable task per feature. Use to check active feature status.
How this skill is triggered — by the user, by Claude, or both
Slash command
/hone:statusThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Show the status of all incomplete task lists:
Show the status of all incomplete task lists:
Use Glob to find all tasks-*.yml files in .plans/ directory.
For each task file found, read it and parse the YAML content. The schema is:
feature: <feature-name>
tasks:
- id: task-001
title: '...'
status: pending|in_progress|completed|failed|cancelled
dependencies:
- task-000
For each file, calculate:
completed or cancelled)For incomplete files, find the next actionable task:
status: pending where ALL dependencies have status completed or cancelledDisplay results. For each incomplete task file:
.plans/<filename>
Feature: <feature>
Progress: X/Y tasks completed
Next: <task-id> - <task-title>
If no incomplete task lists found:
No incomplete task lists found.
All tasks completed!
npx claudepluginhub oskarhane/hone-ai --plugin honeLists tasks from directories like focus/active/paused/completed by parsing Markdown files for progress, status, priority, estimates, and dependencies. Filters by status/dir; outputs table/list/JSON with aggregates.
Displays ultra-concise progress summary of current tasks from task.md: last completed, next task, and blocks. Invoke via /cm-status for quick checks during workflows.
Queries and manages feature implementation task status in plan/ directory projects. Lists features, checks statuses, finds ready tasks via SAM CLI and MCP tools.