Skip to content

Latest commit

Β 

History

History
129 lines (97 loc) Β· 4.79 KB

File metadata and controls

129 lines (97 loc) Β· 4.79 KB

Profile: general β€” Standard PARA Workspace

For: Anyone who wants a structured, AI-friendly personal knowledge workspace. Philosophy: Capture everything. Organize into PARA. Let your agent help. Workspace Version: 1.5.0


πŸ“‚ Workspace Structure

workspace/
β”œβ”€β”€ _inbox/                        # πŸ“₯ Unprocessed items, quick capture
β”œβ”€β”€ Projects/                      # ⚑ Active work with deadlines
β”‚   └── my-project/
β”‚       β”œβ”€β”€ project.md             # Project contract (goal, deadline, DoD)
β”‚       β”œβ”€β”€ sessions/              # Session logs
β”‚       β”œβ”€β”€ docs/                  # Project documentation
β”‚       └── artifacts/
β”‚           └── tasks/
β”‚               β”œβ”€β”€ backlog.md         # πŸ“Œ CANONICAL task list (Single Source of Truth)
β”‚               β”œβ”€β”€ sprint-current.md  # πŸ”„ Auto-generated focus view (One-way Snapshot)
β”‚               └── done.md            # πŸ“¦ Completed tasks archive (Append-only)
β”œβ”€β”€ Areas/                         # πŸ›‘οΈ Stable knowledge & responsibilities
β”‚   β”œβ”€β”€ Workspace/                 # Workspace-level sessions, sync queue, audits
β”‚   └── Learning/                  # Cross-project reusable lessons
β”œβ”€β”€ Resources/                     # πŸ“š Reference materials & tools
β”‚   └── references/                # Books, links, templates
β”œβ”€β”€ Archive/                       # ❄️ Completed/retired items
β”œβ”€β”€ .agents/                        # Agent runtime (auto-installed)
β”‚   β”œβ”€β”€ rules/                     # AI behavior rules
β”‚   └── workflows/                 # AI workflow instructions
β”œβ”€β”€ .para-workspace.yml            # Workspace configuration
β”œβ”€β”€ para                           # CLI entry point
└── README.md

Task Management: Uses the Hybrid 3-File Model β€” backlog.md is the canonical source, sprint-current.md and done.md are derived automatically.


πŸ“‘ Recommended Workflows

Workflow When to Use
/open Start a working session, load context
/backlog Add/review tasks for a project
/plan Create phased implementation plans
/brainstorm Explore ideas before committing to a plan
/new-project Scaffold a new project
/end Close session and classify work into PARA
/push Commit and push code to GitHub
/para Workspace health check and maintenance
/retro Retrospective before archiving a project
/docs Generate and publish documentation

πŸ“œ Active Rules

After para init, the following rules are installed in .agents/rules/:

Rule Purpose
governance.md Core PARA discipline (invariants + heuristics)
para-discipline.md Enforce PARA classification (P/A/R/A/_inbox)
naming.md File and directory naming standards
vcs.md Git and version control best practices
agent-behavior.md Core behavioral constraints for AI agents
context-rules.md Rules for context loading and session management

πŸ”„ Standard Daily Workflow

1. πŸŒ… Open Session β€” /open [project-name]

@[/open] my-project
  • Reads project.md for goal and deadline
  • Shows last session log and pending TODOs
  • Displays sprint-current.md for fast task overview
  • Reports workspace status

2. πŸ“‹ Manage Tasks β€” /backlog

@[/backlog] my-project add task: write blog post outline
  • Add or triage tasks in artifacts/tasks/backlog.md
  • Prioritize by impact and urgency
  • Auto-syncs sprint-current.md and done.md

3. πŸ› οΈ Do the Work

Work on your project. Keep this process in mind:

  • Drop rough notes and clippings into _inbox/ without overthinking
  • Create or update files in the correct PARA category
  • Use your agent to help draft, summarize, or research

4. πŸŒ™ End Session β€” /end

@[/end]
  • Summarize what you completed
  • Log outstanding TODOs for next session
  • Process _inbox/ β€” classify each item into Projects / Areas / Resources / Archive

πŸ’‘ Tips for general Profile

  • _inbox/ first: Never waste time deciding where something goes when you capture it. Just drop it in _inbox/ and process it during /end.
  • Areas are evergreen: Your Areas/ folders represent ongoing responsibilities (finance, health, etc.) β€” keep them accurate and up-to-date.
  • Projects have deadlines: If something doesn't have an end date, it's probably an Area, not a Project.
  • Archive is not trash: Move completed work to Archive/ to keep things tidy without deleting history.
  • Agent reads sprint-current.md: For maximum speed, your AI reads the small focus file instead of the full backlog.