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.
npx claudepluginhub oskarhane/hone-ai --plugin honeThis skill uses the workspace's default tool permissions.
Show the status of all incomplete task lists:
Queries and manages feature implementation task status in plan/ directory projects. Lists features, checks statuses, finds ready tasks via SAM CLI and MCP tools.
Mandates invoking relevant skills via tools before any response in coding sessions. Covers access, priorities, and adaptations for Claude Code, Copilot CLI, Gemini CLI.
Share bugs, ideas, or general feedback.
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!