@atollhq/skill-codex 0.1.4 → 0.1.5
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 +47 -0
- package/package.json +1 -1
- package/skill/SKILL.md +1 -1
package/README.md
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
# @atollhq/skill-codex
|
|
2
|
+
|
|
3
|
+
Install the [Atoll](https://atollhq.com) project management integration for [Codex CLI](https://github.com/openai/codex).
|
|
4
|
+
|
|
5
|
+
Gives your Codex agent the ability to manage tasks, goals, KPIs, initiatives, milestones, comments, and webhooks on Atoll — the same API surface a human teammate uses.
|
|
6
|
+
|
|
7
|
+
## Install
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npx @atollhq/skill-codex --key sk_atoll_... --org your-org-slug
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
Get an API key from **Settings > Members > Add Agent** (or **Create API Key** for integrations) in the Atoll app.
|
|
14
|
+
|
|
15
|
+
This does three things:
|
|
16
|
+
|
|
17
|
+
1. Appends (or updates) an `# Atoll Integration` section in `~/.codex/AGENTS.md`
|
|
18
|
+
2. Copies API reference files to `~/.codex/atoll-references/`
|
|
19
|
+
3. Appends `ATOLL_API_KEY` and `ATOLL_ORG_SLUG` exports to your shell profile (`~/.zshrc` or `~/.bashrc`)
|
|
20
|
+
|
|
21
|
+
Open a fresh shell (or `source` your profile) and Codex has the Atoll integration.
|
|
22
|
+
|
|
23
|
+
## Using the integration
|
|
24
|
+
|
|
25
|
+
Once installed, ask Codex anything task-related:
|
|
26
|
+
|
|
27
|
+
```
|
|
28
|
+
"List my Atoll tasks"
|
|
29
|
+
"Create an issue to fix the login bug, priority 1"
|
|
30
|
+
"What goals are off pace?"
|
|
31
|
+
"Move ATOLL-42 to in_progress"
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
## Companion CLI
|
|
35
|
+
|
|
36
|
+
For terminal-first work, see [`@atollhq/cli`](https://www.npmjs.com/package/@atollhq/cli):
|
|
37
|
+
|
|
38
|
+
```bash
|
|
39
|
+
npm install -g @atollhq/cli
|
|
40
|
+
atoll auth login --key sk_atoll_...
|
|
41
|
+
atoll config set-org your-org-slug
|
|
42
|
+
atoll issue list
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
## License
|
|
46
|
+
|
|
47
|
+
MIT
|
package/package.json
CHANGED
package/skill/SKILL.md
CHANGED
|
@@ -50,7 +50,7 @@ If `$ATOLL_ORG_ID` is empty, the URL collapses to `/api/orgs//issues` which 308-
|
|
|
50
50
|
Install globally or use via npx:
|
|
51
51
|
|
|
52
52
|
```bash
|
|
53
|
-
npm install -g @atollhq/cli # or: npx
|
|
53
|
+
npm install -g @atollhq/cli # or: npx @atollhq/cli ...
|
|
54
54
|
```
|
|
55
55
|
|
|
56
56
|
Configure once:
|