Summary
Add Finder/file system integration to mirror PARA structure for non-markdown project assets. Extends the project lifecycle skills (#2) with file system synchronization.
Stub created: _sub/project-sync-finder/SKILL.md documents the planned interface.
Folder Structure
~/Projects/ (configurable base path)
├── 2026-03-31-quarterly-planning/
│ ├── Assets/
│ └── Documents/
└── _Archive/
└── 2025-12-31-completed-project/
Configuration
Will read from .claude/config.md:
finder_projects_path: ~/Projects
Integration Points
On /create-project:
- Create folder at
~/Projects/{due_date}-{slug}/
- Create subfolders (Assets, Documents)
- Optionally open folder in Finder
On /archive-project:
- Move folder to
~/Projects/_Archive/
- Handle missing folders gracefully
Implementation
The project-sync-finder sub-skill stub is already in place. Implementation needs:
- Path expansion (
~ to full path)
mkdir -p for folder creation
mv for archival
- Idempotent operations (handle existing folders)
- Error handling for permission issues
Acceptance Criteria
Summary
Add Finder/file system integration to mirror PARA structure for non-markdown project assets. Extends the project lifecycle skills (#2) with file system synchronization.
Stub created:
_sub/project-sync-finder/SKILL.mddocuments the planned interface.Folder Structure
Configuration
Will read from
.claude/config.md:finder_projects_path: ~/ProjectsIntegration Points
On
/create-project:~/Projects/{due_date}-{slug}/On
/archive-project:~/Projects/_Archive/Implementation
The
project-sync-findersub-skill stub is already in place. Implementation needs:~to full path)mkdir -pfor folder creationmvfor archivalAcceptance Criteria
_Archive/on project archive