@atollhq/skill-codex 0.4.12 → 0.4.13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -27,7 +27,7 @@ Get an agent API key from **Agents** in the Atoll app. Integration keys are stil
27
27
 
28
28
  This does six things:
29
29
 
30
- 1. Installs the `atoll-api` skill to `~/.codex/skills/atoll-api/`
30
+ 1. Installs the `atoll` skill to `~/.codex/skills/atoll/`
31
31
  2. Appends (or updates) a neutral `# Atoll Integration` section in `~/.codex/AGENTS.md`
32
32
  3. Copies API reference files to `~/.codex/atoll-references/`
33
33
  4. Creates or updates the named Atoll CLI profile when `--profile` is provided
package/bin/install.mjs CHANGED
@@ -55,7 +55,7 @@ Options:
55
55
  --help Show this help message
56
56
 
57
57
  Installs the Atoll integration for Codex CLI:
58
- - Installs the atoll-api skill to ~/.codex/skills/atoll-api/
58
+ - Installs the atoll skill to ~/.codex/skills/atoll/
59
59
  - Writes neutral AGENTS.md API guidance to ~/.codex/
60
60
  - Creates/updates an Atoll CLI profile when --profile is provided
61
61
  - Optionally writes repo-local AGENTS.md/CLAUDE.md profile guidance with --write-project-instructions
@@ -251,15 +251,20 @@ function writeProjectInstructions() {
251
251
  writeProjectInstructionUpdates(updates)
252
252
  }
253
253
 
254
- // 1. Install the Codex skill to ~/.codex/skills/atoll-api/
254
+ // 1. Install the Codex skill to ~/.codex/skills/atoll/
255
255
  const codexDir = join(homedir(), '.codex')
256
256
  mkdirSync(codexDir, { recursive: true })
257
257
 
258
258
  const skillDir = join(__dirname, '..', 'skill')
259
- const skillDest = join(codexDir, 'skills', 'atoll-api')
259
+ const skillDest = join(codexDir, 'skills', 'atoll')
260
+ const legacySkillDest = join(codexDir, 'skills', 'atoll-api')
260
261
  mkdirSync(skillDest, { recursive: true })
261
262
  cpSync(skillDir, skillDest, { recursive: true })
262
263
  console.log(`Installed Atoll skill to ${skillDest}`)
264
+ if (existsSync(legacySkillDest)) {
265
+ rmSync(legacySkillDest, { recursive: true, force: true })
266
+ console.log(`Removed legacy Atoll skill at ${legacySkillDest}`)
267
+ }
263
268
 
264
269
  // 2. Write AGENTS.md to ~/.codex/
265
270
  const skillMd = readFileSync(join(skillDir, 'SKILL.md'), 'utf-8')
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atollhq/skill-codex",
3
- "version": "0.4.12",
3
+ "version": "0.4.13",
4
4
  "description": "Install the Atoll project management integration for Codex CLI",
5
5
  "bin": {
6
6
  "skill-codex": "bin/install.mjs"
package/skill/SKILL.md CHANGED
@@ -1,9 +1,9 @@
1
1
  ---
2
- name: atoll-api
3
- description: Interact with the Atoll project management API for managing tasks, projects, goals, KPIs, initiatives, milestones, comments, members, teams, labels, dependencies, automation, and webhooks. Use when making HTTP requests to atollhq.com, working with Atoll issues/tasks, creating or updating projects, managing team workflows, tracking goals and KPIs, or building agent integrations with the Atoll platform. Atoll treats agents as equal team members — not assistants — with their own goals, assigned work, and the ability to self-direct based on business context.
2
+ name: atoll
3
+ description: Interact with Atoll project management through CLI, API, and MCP guidance for tasks, projects, goals, KPIs, initiatives, milestones, comments, members, teams, labels, dependencies, automation, and webhooks. Use when working with Atoll issues/tasks, creating or updating projects, managing team workflows, tracking goals and KPIs, making HTTP requests to atollhq.com, or building agent integrations with the Atoll platform. Atoll treats agents as equal team members — not assistants — with their own goals, assigned work, and the ability to self-direct based on business context.
4
4
  ---
5
5
 
6
- # Atoll API
6
+ # Atoll
7
7
 
8
8
  Base URL: `https://atollhq.com`
9
9
 
@@ -39,7 +39,7 @@ For OpenClaw / ClawHub, prefer skill-scoped config in `~/.openclaw/openclaw.json
39
39
  {
40
40
  skills: {
41
41
  entries: {
42
- "atoll-api": {
42
+ "atoll": {
43
43
  enabled: true,
44
44
  apiKey: "sk_atoll_...",
45
45
  env: {
@@ -201,7 +201,7 @@ CLI JSON conventions:
201
201
 
202
202
  ## KPI HTTP Sync Drafts
203
203
 
204
- When a human asks you to help automate a KPI from a third-party API, use this Atoll skill. If the current agent environment does not have the `atoll-api` skill installed, tell the user to install it before continuing or use the Atoll CLI/MCP tools directly if they are available.
204
+ When a human asks you to help automate a KPI from a third-party API, use this Atoll skill. If the current agent environment does not have the `atoll` skill installed, tell the user to install it before continuing or use the Atoll CLI/MCP tools directly if they are available.
205
205
 
206
206
  Agents may create draft syncs and validate proposed configs only after a human admin has allowlisted the exact destination host in Atoll. Human admins must create or review the draft in Settings > Integrations > KPI syncs, edit supported request/extraction fields and secrets through structured UI, dry-run, publish, disable, or run-now with snapshot writing.
207
207