docs/autohand.md
How to use planning-with-files with Autohand Code.
Autohand Code discovers skills from multiple locations, including:
~/.autohand/skills/<project>/.autohand/skills/~/.agents/skills/Install with the shared Agent Skills installer:
npx skills add OthmanAdi/planning-with-files --skill planning-with-files -g
This installs into the shared Agent Skills convention that Autohand Code can scan.
Install just for your user account:
git clone https://github.com/OthmanAdi/planning-with-files.git /tmp/planning-with-files
mkdir -p ~/.autohand/skills
cp -r /tmp/planning-with-files/skills/planning-with-files ~/.autohand/skills/
rm -rf /tmp/planning-with-files
Commit the skill to a project so the whole team gets the same planning workflow:
git clone https://github.com/OthmanAdi/planning-with-files.git /tmp/planning-with-files
mkdir -p .autohand/skills
cp -r /tmp/planning-with-files/skills/planning-with-files .autohand/skills/
git add .autohand/skills/planning-with-files
git commit -m "Add planning-with-files skill for Autohand Code"
rm -rf /tmp/planning-with-files
Autohand Code can browse its community catalog with:
autohand --skill-install
Project-scoped catalog installs use:
autohand --skill-install <skill-name> --project
For this repository, use npx skills add or the direct clone paths above unless the skill appears in the Autohand catalog.
Start Autohand Code in your project. For complex tasks, the skill guides the agent to create and maintain:
task_plan.md — phases, progress, and decisionsfindings.md — research and discoveriesprogress.md — session log and test resultsThe planning files live in your project root, not inside the skill directory.
~/.agents/skills/ and Autohand-native directories, avoid installing duplicate copies of the same skill.