Skip to content

Commit 91166ea

Browse files
authored
feat: optimized AIOX agents and skills for Grok Build (#800)
* feat: add optimized AIOX agents and skills for Grok Build Introduce .grok/ integration with token-efficient agent profiles, slash skills, roles, personas, and compact rules. Add regenerable sync script (npm run sync:skills:grok) so Grok stays aligned with .source agents under .aiox-core/development/agents/. * fix: improve grok-skills-sync purpose metadata for IDS registry Clarify the generator module purpose so entity-registry extraction no longer picks an unrelated CodeRabbit comment string. * test: harden flaky pre-push suites for local agent pollution Make Claude subagent governance validate the core aiox-* set instead of exact directory equality, and guard dev-context-loader cacheHits when status/shape is incomplete. * fix: regenerate install manifest for entity-registry hash CI Install Manifest Validation failed because data/entity-registry.yaml hash no longer matched install-manifest.yaml after IDS updates. * fix: address CodeRabbit review on Grok skills sync Escape YAML/TOML scalars, constrain generated write paths under .grok/, block git push for squad-creator, label markdown fences, and keep the cacheHits > 0 assertion in dev-context-loader. * chore: sync entity-registry and install manifest after IDS hook Keep install-manifest hash aligned with entity-registry so CI Install Manifest Validation stays green.
1 parent 77265d5 commit 91166ea

62 files changed

Lines changed: 4482 additions & 837 deletions

Some content is hidden

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

.aiox-core/data/entity-registry.yaml

Lines changed: 848 additions & 824 deletions
Large diffs are not rendered by default.
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
# Grok Skills/Agents Sync
2+
3+
Gera artefatos otimizados do AIOX para o **Grok Build TUI**.
4+
5+
## Usage
6+
7+
```bash
8+
# From repo root
9+
npm run sync:skills:grok
10+
npm run sync:skills:grok:dry
11+
```
12+
13+
## Outputs
14+
15+
| Path | Content |
16+
|------|---------|
17+
| `.grok/agents/*.md` | Agent profiles nativos (frontmatter Grok) |
18+
| `.grok/skills/aiox-*/SKILL.md` | Skills de ativação de persona |
19+
| `.grok/skills/aiox-sdc/` etc. | Skills de workflow |
20+
| `.grok/roles/*.toml` | Defaults de capability para subagents |
21+
| `.grok/personas/*.toml` | Overlays comportamentais |
22+
| `.grok/rules/aiox-core.md` | Regras compactas always-on |
23+
| `.grok/README.md` | Documentação da integração |
24+
25+
## Design
26+
27+
- **Token-efficient:** prompts condensados; YAML completo fica em `.aiox-core/development/agents/`
28+
- **Authority-safe:** matriz de autoridades AIOX embutida (ex.: só devops faz push)
29+
- **Regenerável:** re-rode o sync após mudanças nos agents fonte
30+
31+
## Source
32+
33+
Lê agents via `ide-sync/agent-parser` a partir de `.aiox-core/development/agents/`.
34+
Overlays de perfil Grok: `AGENT_PROFILES` em `index.js`.

0 commit comments

Comments
 (0)