npx claudepluginhub ialameh/sift-coder --plugin siftcoder# /siftcoder:features - Feature Queue Management Manage the feature queue for siftcoder workflows. ## Usage ## Subcommands ### list Show all features in the queue with their status. ### add <title> Add a new feature manually to the queue. ### next Get the next pending feature to work on. ### complete [feature-id] Mark a feature as completed. If no ID provided, completes the current feature. ### skip [feature-id] Skip a feature (moves to end of queue). ### priority <feature-id> <priority> Set priority (1-5, where 1 is highest). ## Instructions You are managing the siftcoder feat...
/featuresManages flywheel feature checklist: displays current status table and supports add, revise, reprioritize, split, remove, unblock operations.
/featuresGenerate and manage feature_list.json from TRDs
Manage the feature queue for siftcoder workflows.
/siftcoder:features <subcommand> [args]
Show all features in the queue with their status.
Add a new feature manually to the queue.
Get the next pending feature to work on.
Mark a feature as completed. If no ID provided, completes the current feature.
Skip a feature (moves to end of queue).
Set priority (1-5, where 1 is highest).
You are managing the siftcoder feature queue. Based on the subcommand:
list:.claude/siftcoder-state/features.json๐ FEATURE QUEUE
In Progress:
โโโ [auth-001] Implement user authentication (Priority: 1)
โ โโโ Subtask 1: Set up OAuth2 โ
โ โโโ Subtask 2: Create login form (in progress)
โ โโโ Subtask 3: Add session management
Pending (3):
โโโ [profile-002] User profile page (Priority: 2)
โโโ [search-003] Search functionality (Priority: 3)
โโโ [export-004] Export to CSV (Priority: 4)
Completed (2):
โโโ [init-000] Project initialization โ
โโโ [setup-001] Database setup โ
add:id: Generated IDtitle: Provided titlestatus: "pending"priority: 5 (default, lowest)subtasks: [] (empty, to be filled by planner)createdAt: Current timestampโ
Added feature: [feature-id] "title"
Use /siftcoder:build to start planning and implementation.
next:๐ NEXT FEATURE
[feature-id] Title
Priority: X
Dependencies: [list or "None"]
Ready to start? Use: /siftcoder:build [feature-id]
complete:โ
Completed: [feature-id] "title"
Remaining: X features pending
skip:โญ๏ธ Skipped: [feature-id] "title"
Reason: [reason or "No reason provided"]
priority:๐ข Priority updated: [feature-id] now priority X
{
"version": "1.0.0",
"features": {
"feature-id": {
"id": "feature-id",
"title": "Feature title",
"status": "pending|in_progress|completed|skipped",
"priority": 1,
"dependencies": [],
"subtasks": [],
"createdAt": "ISO timestamp",
"startedAt": "ISO timestamp",
"completedAt": "ISO timestamp",
"metadata": {}
}
},
"queue": {
"pending": ["id1", "id2"],
"in_progress": ["id3"],
"completed": ["id4", "id5"]
}
}
$ARGUMENTS - The subcommand and any additional argumentsRead, Write, Edit, Bash, Glob, Grep