Ase task delete
Agentic Software Engineering (ASE)
npx -y skills add rse/ase --skill ase-task-deleteAssembled 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
Delete the current or given task plan. Use when the user calls to "delete", "remove" or "clear" the "task", "plan", "spec", or "specification".
SKILL.md
2.8 KB, 676 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-delete"> Delete a Task Plan </skill> <expand name="getopt" arg1="ase-task-delete"> $ARGUMENTS </expand> <objective> *Delete* 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. Inherit the always existing <ase-session-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-delete**, ▶ ERROR: expected single `[<id>]` argument </template> </if>
-
-
Perform Operation:
-
Call the
ase_task_delete(id: "<id/>")tool of theaseMCP server to delete the task plan content and set <text/> to thetextoutput field of thisase_task_deletetool 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 <deleted>false</deleted> and only output the following <template/>: -
If <text/> starts NOT with
<template> ⧉ **ASE**: ◉ task: **<id/>**, ▶ status: **task deleted** </template>ERROR:and NOT withWARNING:: Set <deleted>true</deleted> and only output the following <template/>:
-
- <if condition="<deleted/> is equal 'true' AND <id/> is equal <ase-task-id/> AND <ase-task-id/> is not equal 'default'"> Set <ase-task-id>default</ase-task-id>. Call the `ase_task_id(id: "<ase-task-id/>", session: "<ase-session-id/>")` tool from the `ase` MCP server to switch the task to the default task. Only output the following <template/>: <template> ⧉ **ASE**: ◉ task: **<ase-task-id/>**, ▶ status: **task switched to default** </template> </if>
-