Skip to content

Commit c8a9a81

Browse files
authored
Merge pull request #733 from Ibrahim2595/rename/kagenti-to-rossoctl
πŸ“– Rename Kagenti β†’ Rossoctl across agent-examples
2 parents 4c0a936 + 01cdedc commit c8a9a81

80 files changed

Lines changed: 253 additions & 253 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

β€Ž.claude/skills/orchestrate/SKILL.mdβ€Ž

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,15 +60,15 @@ What was provided?
6060

6161
### Route logic
6262

63-
1. **`/orchestrate <repo-path>`** -- If the path points to a git repository, derive the target name from the directory basename. Check `/tmp/kagenti/orchestrate/<target>/` for existing state. If no scan report exists, invoke `orchestrate:scan`. If scan exists but no plan, invoke `orchestrate:plan`. If both exist, determine the next incomplete phase and invoke it.
63+
1. **`/orchestrate <repo-path>`** -- If the path points to a git repository, derive the target name from the directory basename. Check `/tmp/rossoctl/orchestrate/<target>/` for existing state. If no scan report exists, invoke `orchestrate:scan`. If scan exists but no plan, invoke `orchestrate:plan`. If both exist, determine the next incomplete phase and invoke it.
6464

6565
2. **`/orchestrate <phase>`** -- Validate that `scan-report.md` and `plan.md` exist for the current target. If missing, instruct the user to run `/orchestrate <repo-path>` first. Otherwise invoke the requested phase skill directly (e.g., `orchestrate:precommit`).
6666

67-
3. **`/orchestrate status`** -- List all directories under `/tmp/kagenti/orchestrate/`, read each target's `phase-status.md`, and display a summary table showing target name, current phase, and completion percentage.
67+
3. **`/orchestrate status`** -- List all directories under `/tmp/rossoctl/orchestrate/`, read each target's `phase-status.md`, and display a summary table showing target name, current phase, and completion percentage.
6868

6969
## Phase Status Tracking
7070

71-
All orchestration state is persisted under `/tmp/kagenti/orchestrate/<target>/`:
71+
All orchestration state is persisted under `/tmp/rossoctl/orchestrate/<target>/`:
7272

7373
| File | Purpose |
7474
|------|---------|

β€Ž.claude/skills/orchestrate:ci/SKILL.mdβ€Ž

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ management, and supply chain hardening.
3939

4040
## Prerequisites
4141

42-
- Plan exists at `/tmp/kagenti/orchestrate/<target>/plan.md`
43-
- Scan report at `/tmp/kagenti/orchestrate/<target>/scan-report.md`
42+
- Plan exists at `/tmp/rossoctl/orchestrate/<target>/plan.md`
43+
- Scan report at `/tmp/rossoctl/orchestrate/<target>/scan-report.md`
4444
- Target repo in `.repos/<target>/`
4545

4646
## Read Scan Report First
@@ -391,7 +391,7 @@ gh pr create --repo org/repo --title "Add comprehensive CI workflows" --body "Ph
391391

392392
## Update Phase Status
393393

394-
Set ci to `complete` in `/tmp/kagenti/orchestrate/<target>/phase-status.md`.
394+
Set ci to `complete` in `/tmp/rossoctl/orchestrate/<target>/phase-status.md`.
395395

396396
## Related Skills
397397

β€Ž.claude/skills/orchestrate:plan/SKILL.mdβ€Ž

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ is Phase 1 β€” interactive brainstorming with the developer, no PRs.
3333
Scan report must exist:
3434

3535
```bash
36-
cat /tmp/kagenti/orchestrate/<target>/scan-report.md
36+
cat /tmp/rossoctl/orchestrate/<target>/scan-report.md
3737
```
3838

3939
## Planning Process
@@ -78,7 +78,7 @@ Target 600-700 lines per PR. For each phase:
7878

7979
## Plan Output
8080

81-
Save to `/tmp/kagenti/orchestrate/<target>/plan.md`:
81+
Save to `/tmp/rossoctl/orchestrate/<target>/plan.md`:
8282

8383
```markdown
8484
# Enhancement Plan: <target>
@@ -124,7 +124,7 @@ Save to `/tmp/kagenti/orchestrate/<target>/plan.md`:
124124
Initialize phase tracking:
125125

126126
```bash
127-
cat > /tmp/kagenti/orchestrate/<target>/phase-status.md << 'EOF'
127+
cat > /tmp/rossoctl/orchestrate/<target>/phase-status.md << 'EOF'
128128
# Phase Status: <target>
129129
130130
| Phase | Status | PR | Date |

β€Ž.claude/skills/orchestrate:precommit/SKILL.mdβ€Ž

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ produces PR #1 β€” the foundation that validates all subsequent PRs.
3535

3636
## Prerequisites
3737

38-
- Plan exists at `/tmp/kagenti/orchestrate/<target>/plan.md`
38+
- Plan exists at `/tmp/rossoctl/orchestrate/<target>/plan.md`
3939
- Target repo cloned in `.repos/<target>/`
4040

4141
## Step 1: Detect Language
@@ -207,7 +207,7 @@ gh pr create --repo org/repo --title "Add pre-commit hooks and code quality base
207207

208208
## Update Phase Status
209209

210-
Update `/tmp/kagenti/orchestrate/<target>/phase-status.md`:
210+
Update `/tmp/rossoctl/orchestrate/<target>/phase-status.md`:
211211
- Set precommit to `complete`
212212
- Record PR number and date
213213

β€Ž.claude/skills/orchestrate:replicate/SKILL.mdβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ making it fully self-sufficient. This is Phase 6.
5454

5555
After copying, adapt the skills:
5656

57-
1. **Remove source-specific references** β€” strip kagenti-specific paths or
57+
1. **Remove source-specific references** β€” strip rossoctl-specific paths or
5858
assumptions that don't apply
5959
2. **Verify frontmatter** β€” every `name:` field must match its directory name
6060
3. **Update Related Skills** β€” only reference skills that exist in the copied set

β€Ž.claude/skills/orchestrate:review/SKILL.mdβ€Ž

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ submits reviews after user approval.
3737

3838
## Prerequisites
3939

40-
- `scan-report.md` and `plan.md` exist in `/tmp/kagenti/orchestrate/<target>/`
40+
- `scan-report.md` and `plan.md` exist in `/tmp/rossoctl/orchestrate/<target>/`
4141
- Phases 2-6 are complete (or at least the phases that were planned)
4242
- PRs are open on the target repo
4343

@@ -210,7 +210,7 @@ Update `phase-status.md` when complete:
210210

211211
```bash
212212
# Update phase-status.md
213-
sed -i '' 's/| review .*/| review | complete | -- | YYYY-MM-DD |/' /tmp/kagenti/orchestrate/<target>/phase-status.md
213+
sed -i '' 's/| review .*/| review | complete | -- | YYYY-MM-DD |/' /tmp/rossoctl/orchestrate/<target>/phase-status.md
214214
```
215215

216216
## Related Skills

β€Ž.claude/skills/orchestrate:scan/SKILL.mdβ€Ž

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -309,10 +309,10 @@ git -C .repos/<target> remote -v
309309

310310
## Output Format
311311

312-
Save scan report to `/tmp/kagenti/orchestrate/<target>/scan-report.md`:
312+
Save scan report to `/tmp/rossoctl/orchestrate/<target>/scan-report.md`:
313313

314314
```bash
315-
mkdir -p /tmp/kagenti/orchestrate/<target>
315+
mkdir -p /tmp/rossoctl/orchestrate/<target>
316316
```
317317

318318
Report template:

β€Ž.claude/skills/skills:scan/SKILL.mdβ€Ž

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -165,10 +165,10 @@ Rate each skill 1-5:
165165

166166
### Phase 6: Generate Report
167167

168-
Save to `/tmp/kagenti/skills-scan/`:
168+
Save to `/tmp/rossoctl/skills-scan/`:
169169

170170
```bash
171-
mkdir -p /tmp/kagenti/skills-scan
171+
mkdir -p /tmp/rossoctl/skills-scan
172172
```
173173

174174
Output a structured report:

β€Ž.claude/skills/skills:validate/SKILL.mdβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ If a command is NOT covered, add the pattern to `.claude/settings.json` in the `
140140
When validating multiple skills:
141141

142142
```
143-
TaskCreate: "kagenti | skills | <category> | Verify | Validate <skill-name>"
143+
TaskCreate: "rossoctl | skills | <category> | Verify | Validate <skill-name>"
144144
```
145145

146146
## Related Skills

β€Ž.github/workflows/pr-verifier.ymlβ€Ž

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# PR Verifier β€” caller workflow
22
#
33
# Invokes the org-level reusable PR title verifier defined in
4-
# kagenti/.github to enforce PR title prefix conventions (Feat,
4+
# rossoctl/.github to enforce PR title prefix conventions (Feat,
55
# Fix, Docs, etc.) on every pull request. Pinned to a SHA for
66
# supply-chain hygiene; bump intentionally when upstream changes.
77

@@ -15,4 +15,4 @@ permissions: {}
1515

1616
jobs:
1717
verify-pr-title:
18-
uses: kagenti/.github/.github/workflows/pr-verifier-required.yml@4e535f2436d167295d39d488ce5c44b5a2d49792
18+
uses: rossoctl/.github/.github/workflows/pr-verifier-required.yml@4e535f2436d167295d39d488ce5c44b5a2d49792

0 commit comments

Comments
Β (0)