/install ask-claude-skill
Ask Claude — Execute & Report (with persistent sessions)
The Two Modes
New session (default)
Use when starting a fresh task or new topic.
OUTPUT=$(/home/xmanel/.openclaw/workspace/run-claude.sh "prompt" "/workdir")
echo "$OUTPUT"
Continue session (--continue)
Use when the user is following up on a previous Claude task in the same workdir. Claude Code will have full memory of what was done before — files read, edits made, context gathered.
OUTPUT=$(/home/xmanel/.openclaw/workspace/run-claude.sh --continue "prompt" "/workdir")
echo "$OUTPUT"
When to use --continue
Use --continue when the user says things like:
- "agora corrige o que encontraste"
- "continua"
- "e o ficheiro X?"
- "faz o mesmo para..."
- "e agora?"
- "ok, e o erro de..."
- Anything that clearly references what Claude just did
Use a new session when:
- New unrelated task
- User says "começa do zero" / "new task" / "esquece o anterior"
- Different workdir/project
Session storage
Claude Code stores sessions per-directory in ~/.claude/projects/.
As long as you use the same workdir, --continue picks up exactly where it left off —
same file context, same conversation history, same edits.
Direct command (alternative to wrapper)
# New session
OUTPUT=$(cd /workdir && env -u CLAUDECODE claude --permission-mode bypassPermissions --print "task" 2>&1)
# Continue session
OUTPUT=$(cd /workdir && env -u CLAUDECODE claude --permission-mode bypassPermissions --print --continue "task" 2>&1)
Common workdirs
| Context | Workdir |
|---|---|
| General/scripts | /home/xmanel/.openclaw/workspace |
| Trading | /home/xmanel/.openclaw/workspace/hyperliquid |
After receiving output
- Summarize in 1-3 lines what Claude did/found
- Mention files created or edited
- If error: analyze and suggest fix
- If output is long: summarize, offer full output on request
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install ask-claude-skill - After installation, invoke the skill by name or use
/ask-claude-skill - Provide required inputs per the skill's parameter spec and get structured output
What is Ask Claude Skill?
Delegate a task to Claude Code CLI and immediately report the result back in chat. Supports persistent sessions — Claude Code remembers previous context with... It is an AI Agent Skill for Claude Code / OpenClaw, with 360 downloads so far.
How do I install Ask Claude Skill?
Run "/install ask-claude-skill" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is Ask Claude Skill free?
Yes, Ask Claude Skill is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does Ask Claude Skill support?
Ask Claude Skill is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created Ask Claude Skill?
It is built and maintained by 0xManel (@0xmanel); the current version is v1.1.1.