Help us improve
Share bugs, ideas, or general feedback.
From auto-board-task
Processes the top Todo card on a GitHub Project board end-to-end: sync board to tasks.yml, run task-agent to open a PR, then sync PR back to the card.
npx claudepluginhub dan323/easier-life-skills --plugin auto-board-taskHow this skill is triggered — by the user, by Claude, or both
Slash command
/auto-board-task:auto-board-taskThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Invoke the `workflow` skill **in the current conversation** on the
Guides technical evaluation of code review feedback: read fully, restate for understanding, verify against codebase, respond with reasoning or pushback before implementing.
Share bugs, ideas, or general feedback.
Invoke the workflow skill in the current conversation on the
bundled
workflows/auto-board-task.yaml,
forwarding the user's key=value arguments verbatim.
The workflow chains:
gh-project-sync — reconcile the board into tasks.yml.task-agent — open a PR for the top pending task.gh-project-sync — sync the PR back to its card.This SKILL does no parsing and no validation of its own. The workflow
runner validates against the YAML's inputs: declarations and the
composed sub-skills validate their own argument grammar.
Expand ${CLAUDE_PLUGIN_ROOT} to an absolute path for the workflow
YAML (relative paths won't survive the move into the workflow runner's
working directory):
WORKFLOW_PATH="${CLAUDE_PLUGIN_ROOT}/workflows/auto-board-task.yaml"
echo "$WORKFLOW_PATH"
Then invoke the workflow skill with the Skill tool — not the
Agent tool:
Skill(skill="workflow", args="<absolute WORKFLOW_PATH> <user args verbatim>")
The workflow runner prints its own per-step status block — relay it
as-is once the Skill invocation returns.
Agent tool to invoke the workflow. It looks like the
natural choice but the sub-agent's tool list comes up wrong for
the runner — workflow only works when it runs inline via Skill.gh-project-sync,
task-agent) own validation; duplicating it drifts.gh-project-sync or task-agent directly. The composition
is the point — bypass defeats it.workflow directly.