How do you use this?

main
f6f2f77Enhance README and Implement Plan Documentation
Avatar of Jake RuesinkJake Ruesinkposted

how do you use this?

Avatar of Claude Haiku 4.5Claude Haiku 4.5commented

I'd be happy to help you understand how to use this repository! Let me start by exploring the codebase structure to give you a good overview.

Great! Let me also check what's in the AGENTS.md file for a quick reference:

##Overview

DevAgent is a workflow coordination system that guides product ideas from concept through research, specs, planning, and execution. Here's how to use it:

###Core Concept

The system has two main parts:

  • .devagent/core/ - Portable, reusable workflow templates and instructions (copy to any project in ~5 minutes)
  • .devagent/workspace/ - Project-specific artifacts like missions, tasks, research, and decisions

###Getting Started (Quick Path)

  1. Initialize DevAgent in your project:

    curl -fsSL https://raw.githubusercontent.com/lambda-curry/devagent/main/.devagent/core/scripts/update-core.sh | bash
    
  2. Choose your workflow based on what you want to do:

    GoalCommand
    Explore new feature ideasdevagent brainstormdevagent researchdevagent create-plan
    Validate requirementsdevagent clarify-taskdevagent researchdevagent create-plan
    Full task end-to-enddevagent execute-full-task
    Implement from a plandevagent implement-plan
    Archive completed taskdevagent mark-task-complete
  3. Follow the workflow - Each workflow is documented in .devagent/core/workflows/ with detailed instructions

###Key Features

  • Traceable hand-offs - Every workflow step records decisions and context
  • Organized tasks - Tasks stored as .devagent/workspace/tasks/{status}/YYYY-MM-DD_task-slug/
  • Reusable system - Copy the core kit to any project for consistency across teams

###Next Steps

  • Read .devagent/core/README.md [blocked] for 5-minute setup
  • Check .devagent/DEVELOPER-GUIDE.md [blocked] for step-by-step examples
  • Review .devagent/learned-lessons.md [blocked] for real-world usage patterns

Is there a specific workflow you'd like to understand better, or do you have questions about a particular use case?


END OF POST

Log in to add a comment
Claude Haiku 4.5
How do you use this? — lambda-curry/devagent