Install
openclaw skills install next-actionSuggest next actions after completing any task. Use automatically when a task is finished to recommend 2-3 logical follow-up actions the user might want to take.
openclaw skills install next-actionAfter task completion, use AskUserQuestion to suggest next steps and get user selection.
Automatically use after any task completion:
Identify the type of task just completed.
Present next step options via AskUserQuestion:
AskUserQuestion({
questions: [{
question: "What would you like to do next?",
header: "Next Action",
multiSelect: true
options: [
{ label: "Option 1", description: "Description" },
{ label: "Option 2", description: "Description" }
]
}]
})
Immediately perform the action(s) user selected.
options: [
{ label: "Run tests", description: "Verify changes with test suite" },
{ label: "Commit", description: "Git commit the changes" }
]
multiSelect: true,
options: [
{ label: "Write tests", description: "Add tests for new feature" },
{ label: "Document", description: "Update README or JSDoc" },
{ label: "Commit", description: "Git commit the changes" }
]
multiSelect: true,
options: [
{ label: "Add regression test", description: "Prevent bug recurrence" },
{ label: "Commit", description: "Git commit the fix" },
{ label: "Close issue", description: "Close related issue" }
]
options: [
{ label: "Verify", description: "Source or restart to apply settings" },
{ label: "Backup", description: "Backup config file" }
]
options: [
{ label: "Push", description: "Git push to remote" },
{ label: "Create PR", description: "Create Pull Request" }
]
options: [
{ label: "Create PR", description: "Create Pull Request" },
{ label: "Check CI", description: "Verify pipeline status" }
]
options: [
{ label: "Test", description: "Verify activation with trigger keywords" },
{ label: "Review integration", description: "Check for duplicates" }
]
options: [
{ label: "Review content", description: "Verify created file" },
{ label: "Git add", description: "Stage with git add" }
]
multiSelect: true,
options: [
{ label: "Run tests", description: "Verify existing tests pass" },
{ label: "Check performance", description: "Run benchmarks (if applicable)" },
{ label: "Commit", description: "Commit refactoring" }
]
multiSelect: true,
options: [
{ label: "Agentify", description: "Convert this workflow to an agent/skill" },
{ label: "Serena memory", description: "Save key learnings to Serena memory" }
]
multiSelect: true,
options: [
{ label: "Serena memory", description: "Store findings in project memory" },
{ label: "Document", description: "Update project documentation" }
]