Agent skill
delete-mission
Permanently delete a background mission and all its run history. This action cannot be undone. Use when the user explicitly asks to delete or remove a mission. Always confirm with the user before deleting. Keywords: mission, delete, remove, cancel, destroy, permanently.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/delete-mission
Metadata
Additional technical details for this skill
- domain
- general
- category
- missions
- confidence
- 0.95
- mcp servers
-
[]
- requires approval
- YES
SKILL.md
Delete Mission
Permanently deletes a background mission and all its run history.
Preconditions
- A mission ID or title is provided
- The mission exists and belongs to the current user
- User has explicitly confirmed the deletion
Actions
1. Resolve Mission ID
Fetch the mission to confirm it exists and show the user what they are deleting.
2. Confirm with User
Before deleting, always confirm:
⚠️ Are you sure you want to delete **Cluster health monitor** (mission-abc123)?
This will permanently remove the mission and all 47 run records.
This action cannot be undone.
Reply "yes" to confirm or "no" to cancel.
3. Delete the Mission
Only proceed after explicit confirmation:
result = await temporal_client.execute_activity(
"delete_mission_activity",
{
"mission_id": mission_id,
"user_id": user_id,
}
)
4. Confirm to User
🗑️ Mission deleted: **Cluster health monitor** (mission-abc123)
The mission and all its run history have been permanently removed.
Success Criteria
- User confirmed the deletion
- Mission and run history deleted from database
- User receives confirmation
Failure Handling
- If mission not found: inform the user
- If user cancels: acknowledge and do nothing
Examples
User: "Delete the cluster health monitor" User: "Remove mission mission-abc123" User: "Cancel my daily news digest permanently"
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?