Ase task view
Agentic Software Engineering (ASE)
npx -y skills add rse/ase --skill ase-task-viewAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
What its author says it does
Copied from the file, not written here
View current or given task plan. Use when the user calls to "view", "show" or "see" the "task", "plan", "spec", or "specification".
SKILL.md
4.1 KB, ~1.0k tokens by cl100k_base, as published. Nobody here has run it
@${CLAUDE_SKILL_DIR}/../../meta/ase-control.md @${CLAUDE_SKILL_DIR}/../../meta/ase-skill.md @${CLAUDE_SKILL_DIR}/../../meta/ase-getopt.md
<skill name="ase-task-view"> View a Task Plan </skill><expand name="getopt" arg1="ase-task-view" arg2="--full|-f"> $ARGUMENTS </expand>
<objective> *View* the task plan. </objective>Procedure
-
Determine Task:
-
Set <id><getopt-arguments/></id> initially, with any leading and trailing whitespace stripped. Inherit the always existing <ase-task-id/> from the current context. Do not output anything.
- <if condition="<id/> is empty"> Set <id><ase-task-id/></id> Do not output anything. </if>
- <if condition="<id/> does NOT match the regexp `^[a-zA-Z][a-zA-Z0-9_-]*$`"> Only output the following <template/> and then immediately *STOP* processing the entire current skill: <template> ⧉ **ASE**: ☻ skill: **ase-task-view**, ▶ ERROR: expected single `[<id>]` argument </template> </if>
-
-
Perform Operation:
-
Call the
ase_task_load(id: "<id/>")tool of theaseMCP server to load the task plan content and set <text/> to thetextoutput field of thisase_task_loadtool call. Do not output anything related to this MCP tool call.-
If <text/> starts with
<template> ⧉ **ASE**: ◉ task: **<id/>**, ▶ status: **<text/>** </template>ERROR:orWARNING:: Set <task-content></task-content> (set task content to empty). Only output the following <template/>: -
If <text/> starts NOT with
<template> ⧉ **ASE**: ◉ task: **<id/>**, ✪ plan: **<words/>** words, ▶ status: **plan loaded** </template>ERROR:and NOT withWARNING:: Set <task-content><text/></task-content> (set task content to text). Calculate the number of words <words/> of <task-content/>. Only output the following <template/>:
-
- <if condition="<task-content/> is not empty"> Treat <task-content/> as *verbatim* Markdown. *Render plan*: Only output the following <template/>. If <getopt-option-full/> is *not* `true`, <task-content/> is longer than 90 lines, and a `## IMPLEMENTATION DRAFT` section (from the companion skill `ase-task-preflight`) exists, replace the entire content of the `## IMPLEMENTATION DRAFT` section with `[...]`. Else, do *not* truncate, summarize, or partially show the plan. Use the following <template/>: <template> <ase-tpl-head title="TASK"/> <task-content/> <ase-tpl-foot title="TASK"/> </template> </if>
-
Finally, give the closing hints by expanding the following (which, depending on the configured <ase-guidance-level/>, may each expand into nothing and hence emit no output at all):
<if condition="<task-content/> is not empty"> <ase-tpl-hint level="normal"> Use `/ase-task-edit` or `/ase-task-grill` to refine this plan, `/ase-task-preflight` to dry-run it, and `/ase-task-implement` to realize it. </ase-tpl-hint> <if condition="<getopt-option-full/> is not equal `true` and the `## IMPLEMENTATION DRAFT` section was replaced with `[...]`"> <ase-tpl-hint level="verbose"> Use `/ase-task-view --full` to show the elided `IMPLEMENTATION DRAFT` section, too. </ase-tpl-hint> </if> </if> <else> <ase-tpl-hint level="normal"> No plan exists under this task id -- use `/ase-task-list` to see the available tasks and `/ase-task-edit` to create a plan. </ase-tpl-hint> </else>
-