Skip to main content
Trinity
Cloud Code Plugins/Workspace Kit

Workspace Kit

Workspace scaffolding — organized folders, indexes, and templates for multi-session work.

Installation

/plugin install workspace-kit@abilityai

Skills

SkillDescription
/workspace-kit:setup-projectsInitialize the project/session structure
/workspace-kit:create-project <name>Create a new tracked project
/workspace-kit:create-session [topic]Create today's session folder
/workspace-kit:archive-project <name>Archive a completed project

Setup

Run /workspace-kit:setup-projects to initialize:

projects/
├── PROJECT_INDEX.md      # Central project registry
└── .project-template/    # Template for new projects

sessions/
└── SESSION_INDEX.md      # Session tracking

Project Structure

Each project folder contains:

projects/my-project/
├── README.md       # Project overview, goals, key files
├── STATUS.md       # Current status, next steps, blockers
├── DECISIONS.md    # Decision log with rationale
└── [project files]
README.md — Project description, goals (checkboxes), key files, related links
STATUS.md — Current status (active/paused/completed), next steps, blockers, progress log
DECISIONS.md — Decision log with dates, rationale, and outcomes

Session Structure

Sessions are date-based temporary workspaces:

sessions/
├── 2025-01-15_api-research/
│   ├── README.md
│   ├── notes.md
│   └── scratch.py
└── 2025-01-16_client-prep/
    └── ...

What Goes Where

Content TypeLocationWhy
Final deliverablesprojects/Persistent, tracked
Project documentationprojects/Part of project
Code in developmentprojects/Version controlled
Daily work artifactssessions/Temporary
Research and explorationsessions/May not be kept
Scratch filessessions/Disposable

Workflow

Starting Work

1.Check projects/PROJECT_INDEX.md for active projects
2.Open project's STATUS.md to see next steps
3.Create session if needed: /workspace-kit:create-session research

During Work

Update project STATUS.md as you progress
Store temporary files in session folder
Log decisions in DECISIONS.md

Ending Work

Update STATUS.md with progress and next steps
Move final outputs from session to project
Clean up temporary session files