Skip to content

Commit e6ab09b

Browse files
authored
Rename aiconfig-* skills to agentcontrol-* namespace (#64)
* Rename aiconfig-* skills to agentcontrol-* namespace
1 parent ce4f04e commit e6ab09b

78 files changed

Lines changed: 516 additions & 252 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.

.cursor-plugin/plugin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"mcp"
2222
],
2323
"skills": [
24-
"skills/ai-configs",
24+
"skills/agentcontrol",
2525
"skills/feature-flags",
2626
"skills/metrics",
2727
"skills/onboarding"

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -22,16 +22,16 @@ Agent Skills are modular, text-based playbooks that teach an agent how to perfor
2222

2323
| Skill | Description |
2424
|-------|-------------|
25-
| `ai-configs/aiconfig-create` | Create AI Configs with variations for agent or completion mode |
26-
| `ai-configs/aiconfig-migrate` | Migrate an app with hardcoded LLM prompts to AI Configs in five stages (extract, wrap, tools, tracking, evals) |
27-
| `ai-configs/aiconfig-update` | Update and delete AI Configs, manage lifecycle |
28-
| `ai-configs/aiconfig-variations` | Manage AI Config variations for A/B testing |
29-
| `ai-configs/aiconfig-tools` | Create and attach tools for function calling |
30-
| `ai-configs/aiconfig-projects` | Create and manage projects to organize AI Configs |
31-
| `ai-configs/aiconfig-online-evals` | Attach LLM-as-a-judge evaluators to AI Configs |
32-
| `ai-configs/aiconfig-targeting` | Configure targeting rules for AI Config rollouts |
33-
| `ai-configs/aiconfig-snippets` | Create and manage reusable prompt snippets across AI Configs |
34-
| `ai-configs/aiconfig-agent-graphs` | Create and manage multi-agent graphs with routing and handoffs |
25+
| `agentcontrol/configs-create` | Create AI Configs with variations for agent or completion mode |
26+
| `agentcontrol/migrate` | Migrate an app with hardcoded LLM prompts to AI Configs in five stages (extract, wrap, tools, tracking, evals) |
27+
| `agentcontrol/configs-update` | Update and delete AI Configs, manage lifecycle |
28+
| `agentcontrol/configs-variations` | Manage AI Config variations for A/B testing |
29+
| `agentcontrol/tools` | Create and attach tools for function calling |
30+
| `agentcontrol/projects` | Create and manage projects to organize AI Configs |
31+
| `agentcontrol/online-evals` | Attach LLM-as-a-judge evaluators to AI Configs |
32+
| `agentcontrol/configs-targeting` | Configure targeting rules for AI Config rollouts |
33+
| `agentcontrol/snippets` | Create and manage reusable prompt snippets across AI Configs |
34+
| `agentcontrol/agent-graphs` | Create and manage multi-agent graphs with routing and handoffs |
3535

3636
### Experiments
3737

eval-scores.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"schemaVersion": 1,
33
"updatedAt": "2026-05-20T19:16:00.938Z",
44
"skills": {
5-
"ai-configs/aiconfig-create": {
5+
"agentcontrol/configs-create": {
66
"score": 100,
77
"passed": 4,
88
"total": 4,
@@ -32,7 +32,7 @@
3232
}
3333
]
3434
},
35-
"ai-configs/aiconfig-update": {
35+
"agentcontrol/configs-update": {
3636
"score": 80,
3737
"passed": 4,
3838
"total": 5,
@@ -67,7 +67,7 @@
6767
}
6868
]
6969
},
70-
"ai-configs/aiconfig-tools": {
70+
"agentcontrol/tools": {
7171
"score": 75,
7272
"passed": 3,
7373
"total": 4,
@@ -97,7 +97,7 @@
9797
}
9898
]
9999
},
100-
"ai-configs/aiconfig-variations": {
100+
"agentcontrol/configs-variations": {
101101
"score": 80,
102102
"passed": 4,
103103
"total": 5,

evals/aiconfig-create/promptfooconfig.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@
1010
description: "End-to-end evaluation of the aiconfig-create skill"
1111

1212
prompts:
13-
- file://../../skills/ai-configs/aiconfig-create/SKILL.md
13+
- file://../../skills/agentcontrol/configs-create/SKILL.md
1414

1515
providers:
1616
- id: file://../providers/claude-skill-agent-sdk.js
1717
label: claude-skill-agent-sdk
1818
config:
19-
skill_slug: aiconfig-create
19+
skill_slug: configs-create
2020

2121
tests:
2222
# ------------------------------------------------------------------

evals/aiconfig-tools/promptfooconfig.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@
1010
description: "End-to-end evaluation of the aiconfig-tools skill"
1111

1212
prompts:
13-
- file://../../skills/ai-configs/aiconfig-tools/SKILL.md
13+
- file://../../skills/agentcontrol/tools/SKILL.md
1414

1515
providers:
1616
- id: file://../providers/claude-skill-agent-sdk.js
1717
label: claude-skill-agent-sdk
1818
config:
19-
skill_slug: aiconfig-tools
19+
skill_slug: tools
2020

2121
tests:
2222
# ------------------------------------------------------------------

evals/aiconfig-update/promptfooconfig.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@
88
description: "End-to-end evaluation of the aiconfig-update skill"
99

1010
prompts:
11-
- file://../../skills/ai-configs/aiconfig-update/SKILL.md
11+
- file://../../skills/agentcontrol/configs-update/SKILL.md
1212

1313
providers:
1414
- id: file://../providers/claude-skill-agent-sdk.js
1515
label: claude-skill-agent-sdk
1616
config:
17-
skill_slug: aiconfig-update
17+
skill_slug: configs-update
1818

1919
tests:
2020
# ------------------------------------------------------------------

evals/aiconfig-variations/promptfooconfig.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@
99
description: "End-to-end evaluation of the aiconfig-variations skill"
1010

1111
prompts:
12-
- file://../../skills/ai-configs/aiconfig-variations/SKILL.md
12+
- file://../../skills/agentcontrol/configs-variations/SKILL.md
1313

1414
providers:
1515
- id: file://../providers/claude-skill-agent-sdk.js
1616
label: claude-skill-agent-sdk
1717
config:
18-
skill_slug: aiconfig-variations
18+
skill_slug: configs-variations
1919

2020
tests:
2121
# ------------------------------------------------------------------

evals/scripts/_manifest.js

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -15,27 +15,27 @@
1515
const SUITES = [
1616
{
1717
suite: "aiconfig-create",
18-
skillKey: "ai-configs/aiconfig-create",
19-
skillDir: "skills/ai-configs/aiconfig-create",
20-
readme: "skills/ai-configs/aiconfig-create/README.md",
18+
skillKey: "agentcontrol/configs-create",
19+
skillDir: "skills/agentcontrol/configs-create",
20+
readme: "skills/agentcontrol/configs-create/README.md",
2121
},
2222
{
2323
suite: "aiconfig-update",
24-
skillKey: "ai-configs/aiconfig-update",
25-
skillDir: "skills/ai-configs/aiconfig-update",
26-
readme: "skills/ai-configs/aiconfig-update/README.md",
24+
skillKey: "agentcontrol/configs-update",
25+
skillDir: "skills/agentcontrol/configs-update",
26+
readme: "skills/agentcontrol/configs-update/README.md",
2727
},
2828
{
2929
suite: "aiconfig-tools",
30-
skillKey: "ai-configs/aiconfig-tools",
31-
skillDir: "skills/ai-configs/aiconfig-tools",
32-
readme: "skills/ai-configs/aiconfig-tools/README.md",
30+
skillKey: "agentcontrol/tools",
31+
skillDir: "skills/agentcontrol/tools",
32+
readme: "skills/agentcontrol/tools/README.md",
3333
},
3434
{
3535
suite: "aiconfig-variations",
36-
skillKey: "ai-configs/aiconfig-variations",
37-
skillDir: "skills/ai-configs/aiconfig-variations",
38-
readme: "skills/ai-configs/aiconfig-variations/README.md",
36+
skillKey: "agentcontrol/configs-variations",
37+
skillDir: "skills/agentcontrol/configs-variations",
38+
readme: "skills/agentcontrol/configs-variations/README.md",
3939
},
4040
{
4141
suite: "launchdarkly-flag-create",

0 commit comments

Comments
 (0)