Add Feynman skill and memory to workflow template

- feynman/skills/workflow-bootstrap/SKILL.md - Bootstrap skill
- feynman/memory-template.md - Memory template
- feynman/README.md - Feynman configs documentation
- scripts/setup.sh - Updated to auto-install Feynman configs if detected
- docs/workflow/INDEX.md - Updated with Feynman integration info
- README.md - Updated with Feynman integration section

When running 'pnpm run setup':
1. Checks for Feynman installation
2. Installs workflow-bootstrap skill to ~/.feynman/agent/skills/
3. Creates .feynman/memory.md from template
4. Gives two-layer nudge: skill (manual) + memory (automatic)
This commit is contained in:
shokollm
2026-04-18 13:25:29 +00:00
parent d9bc27cb4a
commit 002596aea9
6 changed files with 344 additions and 6 deletions

View File

@@ -56,11 +56,19 @@ A workflow where:
## Before Starting a New Project
Tell your agent to set up the workflow:
If you have Feynman installed:
> "feynman, set up the workflow using the template from https://git.fbrns.co/shoko/workflow"
> "feynman, set up the workflow"
The agent will copy the structure and install the pre-commit hook automatically.
Feynman will clone the template, copy the structure, install the pre-commit hook, and set up its own skill and memory.
If Feynman is not installed, manually:
```bash
git clone https://git.fbrns.co/shoko/workflow.git my-new-project
cd my-new-project
pnpm run setup
```
## For New Team Members