Skip to content

Commit 3b85fb8

Browse files
committed
complete rename to Code Conductor
1 parent ad15832 commit 3b85fb8

File tree

11 files changed

+20
-20
lines changed

11 files changed

+20
-20
lines changed

.conductor/contracts.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Cross-Role Contracts Matrix
22

33
## Overview
4-
This document defines the contracts and interfaces between different agent roles in Conductor-Score. Each contract specifies inputs, outputs, service level agreements (SLAs), and escalation protocols to ensure smooth collaboration.
4+
This document defines the contracts and interfaces between different agent roles in Code-Conductor. Each contract specifies inputs, outputs, service level agreements (SLAs), and escalation protocols to ensure smooth collaboration.
55

66
## Contract Definitions
77

.conductor/roles/CLAUDE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# CLAUDE.md: Instructions for Claude Code - Agent Roles
22

33
## Purpose
4-
This directory contains agent role definitions for the Conductor-Score orchestration system. Each `.md` file defines a specific agent type (dev, devops, security, etc.) with responsibilities, skills, and workflows. Claude Code should use these definitions to understand agent capabilities and generate compatible extensions without disrupting the orchestration system.
4+
This directory contains agent role definitions for the Code-Conductor orchestration system. Each `.md` file defines a specific agent type (dev, devops, security, etc.) with responsibilities, skills, and workflows. Claude Code should use these definitions to understand agent capabilities and generate compatible extensions without disrupting the orchestration system.
55

66
## Guidelines
77
- **Do**: Always reference `_core.md` for the base agentic workflow (ReAct pattern)

.conductor/roles/_core.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## Agentic Workflow Loop (ReAct Pattern)
44

5-
Every Conductor-Score agent follows this core reasoning and acting pattern:
5+
Every Code-Conductor agent follows this core reasoning and acting pattern:
66

77
### 1. 🔍 **Observe**
88
- Read task specification and success criteria

.conductor/scripts/CLAUDE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# CLAUDE.md: Instructions for Claude Code - Automation Scripts
22

33
## Purpose
4-
This directory contains Python and Bash scripts that power the Conductor-Score orchestration system. These scripts handle task management, agent coordination, health monitoring, and GitHub integration. Claude Code should understand their safe usage and guide modifications that maintain system integrity.
4+
This directory contains Python and Bash scripts that power the Code-Conductor orchestration system. These scripts handle task management, agent coordination, health monitoring, and GitHub integration. Claude Code should understand their safe usage and guide modifications that maintain system integrity.
55

66
## Guidelines
77
- **Do**: Read scripts thoroughly before suggesting modifications

.conductor/scripts/bootstrap.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
#!/bin/bash
22
set -e
33

4-
# Conductor-Score Agent Bootstrap Script
4+
# Code-Conductor Agent Bootstrap Script
55
# Universal agent initialization for both Conductor GUI and terminal workflows
66

7-
echo "🎼 Conductor-Score Agent Bootstrap"
7+
echo "🎼 Code-Conductor Agent Bootstrap"
88
echo "=================================="
99

1010
# Load configuration

.conductor/scripts/generate-summary.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def generate_summary():
3737
state = load_state()
3838

3939
if not state:
40-
print("## 🎼 Conductor-Score Status\n")
40+
print("## 🎼 Code-Conductor Status\n")
4141
print("⚠️ No system data available")
4242
return
4343

@@ -46,7 +46,7 @@ def generate_summary():
4646
available_tasks = state.get("available_tasks", [])
4747
_ = state.get("completed_work", [])
4848

49-
print("## 🎼 Conductor-Score System Status\n")
49+
print("## 🎼 Code-Conductor System Status\n")
5050

5151
# Overview metrics
5252
print("### 📊 Overview\n")
@@ -153,7 +153,7 @@ def generate_summary():
153153

154154
# Footer
155155
print("---")
156-
print("*Generated by Conductor-Score health monitoring*")
156+
print("*Generated by Code-Conductor health monitoring*")
157157

158158

159159
def main():

.conductor/scripts/issue-to-task.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ def extract_task_data(issue, metadata, issue_number):
103103
"source": {
104104
"type": "github_issue",
105105
"issue_number": issue_number,
106-
"url": f"https://github.com/ryanmac/conductor-score/issues/{issue_number}",
106+
"url": f"https://github.com/ryanmac/Code-Conductor/issues/{issue_number}",
107107
},
108108
"created_at": datetime.utcnow().isoformat(),
109109
}

.github/CONTRIBUTING.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
# 🎼 Contributing to Conductor-Score
1+
# 🎼 Contributing to Code-Conductor
22

3-
Thank you for your interest in making Conductor-Score even better! This project thrives on community contributions that help developers worldwide transform their workflows with AI agent coordination.
3+
Thank you for your interest in making Code-Conductor even better! This project thrives on community contributions that help developers worldwide transform their workflows with AI agent coordination.
44

55
## 🚀 Quick Start for Contributors
66

77
### The Vision
8-
Conductor-Score should enable any developer to go from **tweet discovery → clone → working AI agents** in under 5 minutes. Every contribution should move us closer to this "life-changing" developer experience.
8+
Code-Conductor should enable any developer to go from **tweet discovery → clone → working AI agents** in under 5 minutes. Every contribution should move us closer to this "life-changing" developer experience.
99

1010
### Ways to Contribute
1111

@@ -57,8 +57,8 @@ Conductor-Score should enable any developer to go from **tweet discovery → clo
5757

5858
```bash
5959
# Fork and clone
60-
git clone https://github.com/YOUR-USERNAME/conductor-score.git
61-
cd conductor-score
60+
git clone https://github.com/YOUR-USERNAME/Code-Conductor.git
61+
cd Code-Conductor
6262

6363
# Test the current setup
6464
python setup.py --debug
@@ -73,7 +73,7 @@ python setup.py --debug
7373
```bash
7474
# Test with a real project of that type
7575
cd /path/to/test-project
76-
python /path/to/conductor-score/setup.py --auto --debug
76+
python /path/to/Code-Conductor/setup.py --auto --debug
7777

7878
# Verify the generated config makes sense
7979
cat .conductor/config.yaml

.github/ISSUE_TEMPLATE/conductor-task.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ body:
88
value: |
99
## 🎼 Create a Conductor Task
1010
11-
This template helps you create a structured task that can be automatically processed by Conductor-Score agents.
11+
This template helps you create a structured task that can be automatically processed by Code-Conductor agents.
1212
1313
**Note**: Adding the `conductor:task` label will automatically convert this issue into a task.
1414
@@ -141,4 +141,4 @@ body:
141141
4. **Progress**: Monitor via GitHub Actions and system health checks
142142
5. **Completion**: Agent creates PR when task is finished
143143
144-
📚 **Learn more**: [Conductor-Score Documentation](docs/USAGE.md)
144+
📚 **Learn more**: [Code-Conductor Documentation](docs/USAGE.md)

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## 🎼 Conductor-Score Contribution
1+
## 🎼 Code-Conductor Contribution
22

33
### Description
44
<!-- Provide a clear description of what this PR accomplishes -->

0 commit comments

Comments
 (0)