Getting Started with Quickstart Framework#
Welcome! This section will help you get up and running with the Quickstart Agent-Augmented Development Framework in under 30 minutes.
Quick Navigation#
⚡ Quickstart (5 min)
Get your first agent task running immediately. Perfect if you want to see the framework in action before diving deeper.
Start Now →
📦 Installation
Complete installation instructions for various platforms and environments. Includes prerequisites, setup scripts, and verification steps.
Installation Guide →
🧠 Core Concepts
Understand the key concepts: agent profiles, file-based coordination, directives, and task orchestration.
Learn Concepts →
Quickstart (5 minutes)#
Goal: Run your first AI-augmented task using the framework.
Prerequisites#
- Git installed
- GitHub account
- AI assistant (Claude, GitHub Copilot, etc.)
Steps#
1. Clone or Fork the Repository
# Clone the quickstart template
git clone https://github.com/sddevelopment-be/quickstart_agent-augmented-development.git
cd quickstart_agent-augmented-development
# Or fork on GitHub and clone your fork2. Explore the Structure
# View agent profiles
ls .github/agents/
# View documentation
ls docs/
# View work directory (agent coordination)
ls work/3. Attach Your AI Assistant
- Claude Desktop / Claude Code: Open the repository
- GitHub Copilot: Open in VS Code with Copilot Chat
- Cursor: Open repository in Cursor IDE
4. Give Your First Agent Task
Instruct your AI assistant:
“Read
.github/agents/bootstrap.mdfirst, then tell me when you’re ready. After that, I want you to act as Writer Wendy and create a brief summary of this repository’s purpose inwork/summaries/repo-overview.md.”
5. Review the Output
Check work/summaries/repo-overview.md for the agent-generated summary.
✅ Success! You’ve completed your first agent-augmented task.
Installation#
Option 1: Download Latest Release (Recommended)#
For downstream projects: Download the packaged framework from GitHub Releases.
# Download and install the latest release
curl -fsSL https://github.com/sddevelopment-be/quickstart_agent-augmented-development/releases/latest/download/deploy_framework.sh | bash
# Or install a specific version
curl -fsSL https://github.com/sddevelopment-be/quickstart_agent-augmented-development/releases/latest/download/deploy_framework.sh | bash -s -- --version 1.0.0Manual download:
- Visit GitHub Releases
- Download
quickstart-framework-X.Y.Z.zip - Extract to your project root
- Run the included installation script
Option 2: Clone Repository (For Development)#
For contributing or customizing: Clone the full repository.
# Clone the repository
git clone https://github.com/sddevelopment-be/quickstart_agent-augmented-development.git
cd quickstart_agent-augmented-development
# Initialize submodules (if any)
git submodule update --init --recursivePost-Installation Steps#
Customize for your project:
- Edit
docs/VISION.mdwith your project goals - Review agent profiles in
.github/agents/ - Adjust workflows in
.github/workflows/
- Edit
Verify installation:
# Check framework files are present ls .github/agents/ ls docs/(Optional) Deploy to AI assistants:
npm install npm run deploy:claude:prompts # Deploy to Claude Code npm run deploy:copilot # Deploy to GitHub Copilot
For complete installation instructions, see docs/HOW_TO_USE/framework_install.md.
Core Concepts#
Comprehensive concepts guide coming in Batch 2.
Preview: Key concepts to understand:
Agent Profiles#
Each agent has a profile defining:
- Purpose: What the agent specializes in
- Capabilities: What the agent can do
- Responsibilities: What the agent should focus on
- Collaboration Contract: How the agent works with others
File-Based Coordination#
Agents communicate via files:
work/tasks/: Task requestswork/progress/: Status updateswork/analysis/: Research and analysis outputsoutput/: Final artifacts
Directives#
Modular instructions loaded on demand:
- Stored in
.github/agents/directives/ - Referenced by code (e.g.,
007_agent_declaration.md) - Loaded with
/require-directive <code>
Workflows#
Common workflows:
- Single Agent: Simple task with one agent
- Sequential Handoff: Agent A completes task, hands off to Agent B
- Parallel Work: Multiple agents work independently, merge results
- Collaborative: Multiple agents refine work iteratively
What’s Next?#
After Quickstart:
- Explore How-To Guides (19 comprehensive guides)
- Understand Architecture (design decisions and patterns)
- Create Custom Agents (tailor to your workflow)
- Integrate with CI/CD (automate with GitHub Actions)
This section is under active development. Content from docs/HOW_TO_USE/QUICKSTART.md will be migrated in Batch 2.