docs/openclaw.md
How to use planning-with-files with OpenClaw.
skills/planning-with-files/ in your project rootOpenClaw supports three skill locations (in precedence order):
<workspace>/skills/~/.openclaw/skills/Install directly from the ClawHub marketplace:
claw install othmanadi/planning-with-files
Or download the zip from clawhub.ai/othmanadi/planning-with-files and extract to your workspace skills/ folder.
Copy from the GitHub repo to your project:
# Clone the repo
git clone https://github.com/OthmanAdi/planning-with-files.git
# Copy the skill files to your workspace
mkdir -p skills/planning-with-files
cp -r planning-with-files/clawhub-upload/* skills/planning-with-files/
# Clean up
rm -rf planning-with-files
Install to your local OpenClaw skills directory:
# Clone the repo
git clone https://github.com/OthmanAdi/planning-with-files.git
# Copy to global OpenClaw skills
mkdir -p ~/.openclaw/skills/planning-with-files
cp -r planning-with-files/clawhub-upload/* ~/.openclaw/skills/planning-with-files/
# Clean up
rm -rf planning-with-files
# Check OpenClaw status and loaded skills
openclaw status
task_plan.md — Phase tracking and decisionsfindings.md — Research and discoveriesprogress.md — Session log and test resultsFrom your project root:
# Initialize all planning files
bash skills/planning-with-files/scripts/init-session.sh
# Or on Windows PowerShell
powershell -ExecutionPolicy Bypass -File skills/planning-with-files/scripts/init-session.ps1
# Verify all phases are complete
bash skills/planning-with-files/scripts/check-complete.sh
Configure the skill in ~/.openclaw/openclaw.json:
{
skills: {
entries: {
"planning-with-files": {
enabled: true
}
}
}
}