Adding instructions for stable branch.

This commit is contained in:
Cole Medin 2025-09-13 11:03:03 -05:00
parent 34a51ec362
commit 8e2e8aa05e
2 changed files with 7 additions and 3 deletions

View File

@ -149,7 +149,7 @@ Test these things using both the UI and the MCP server. This process will be sim
- This creates your own copy of the repository
```bash
# Clone your fork (replace 'your-username' with your GitHub username)
# Clone your fork from main branch for contributing (replace 'your-username' with your GitHub username)
git clone https://github.com/your-username/archon.git
cd archon
@ -157,6 +157,8 @@ Test these things using both the UI and the MCP server. This process will be sim
git remote add upstream https://github.com/coleam00/archon.git
```
**Note:** The `main` branch is used for contributions and contains the latest development work. The `stable` branch is for users who want a more tested, stable version of Archon.
2. **🤖 AI Coding Assistant Setup**
**IMPORTANT**: If you're using AI coding assistants to help contribute to Archon, set up our global rules for optimal results.
@ -169,7 +171,7 @@ Test these things using both the UI and the MCP server. This process will be sim
3. **Create Feature Branch**
**Best Practice**: Always create a feature branch rather than working directly on main. This keeps your main branch clean and makes it easier to sync with the upstream repository.
**Best Practice**: Always create a feature branch from main rather than working directly on it. This keeps your main branch clean and makes it easier to sync with the upstream repository.
```bash
git checkout -b feature/your-feature-name

View File

@ -54,11 +54,13 @@ This new vision for Archon replaces the old one (the agenteer). Archon used to b
1. **Clone Repository**:
```bash
git clone https://github.com/coleam00/archon.git
git clone -b stable https://github.com/coleam00/archon.git
```
```bash
cd archon
```
**Note:** The `stable` branch is recommended for using Archon. If you want to contribute or try the latest features, use the `main` branch with `git clone https://github.com/coleam00/archon.git`
2. **Environment Configuration**:
```bash