@atollhq/skill-claude 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 +48 -0
- package/bin/install.mjs +1 -1
- package/package.json +1 -1
- package/skill/SKILL.md +1 -1
package/README.md
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
# @atollhq/skill-claude
|
|
2
|
+
|
|
3
|
+
Install the [Atoll](https://atollhq.com) project management skill for [Claude Code](https://docs.anthropic.com/en/docs/claude-code).
|
|
4
|
+
|
|
5
|
+
Gives your Claude Code 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-claude --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 two things:
|
|
16
|
+
|
|
17
|
+
1. Copies the skill into `~/.claude/skills/atoll-api/`
|
|
18
|
+
2. Writes `ATOLL_API_KEY` and `ATOLL_ORG_SLUG` into `~/.claude/settings.json` under `env`
|
|
19
|
+
|
|
20
|
+
Restart Claude Code and the `atoll-api` skill is available.
|
|
21
|
+
|
|
22
|
+
## Using the skill
|
|
23
|
+
|
|
24
|
+
Once installed, ask Claude anything task-related:
|
|
25
|
+
|
|
26
|
+
```
|
|
27
|
+
"List my Atoll tasks"
|
|
28
|
+
"Create an issue to fix the login bug, priority 1"
|
|
29
|
+
"What goals are off pace?"
|
|
30
|
+
"Move ATOLL-42 to in_progress"
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
The skill also documents how to talk to the Atoll API directly via curl, in case your agent needs to.
|
|
34
|
+
|
|
35
|
+
## Companion CLI
|
|
36
|
+
|
|
37
|
+
For terminal-first work, see [`@atollhq/cli`](https://www.npmjs.com/package/@atollhq/cli):
|
|
38
|
+
|
|
39
|
+
```bash
|
|
40
|
+
npm install -g @atollhq/cli
|
|
41
|
+
atoll auth login --key sk_atoll_...
|
|
42
|
+
atoll config set-org your-org-slug
|
|
43
|
+
atoll issue list
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
## License
|
|
47
|
+
|
|
48
|
+
MIT
|
package/bin/install.mjs
CHANGED
|
@@ -23,7 +23,7 @@ function parseArgs(argv) {
|
|
|
23
23
|
|
|
24
24
|
function printUsage() {
|
|
25
25
|
console.log(`
|
|
26
|
-
Usage: npx @
|
|
26
|
+
Usage: npx @atollhq/skill-claude --key <api-key> --org <org-slug>
|
|
27
27
|
|
|
28
28
|
Options:
|
|
29
29
|
--key Atoll API key (sk_atoll_...)
|
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:
|