@atollhq/skill-claude 0.1.8 → 0.1.10
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 +5 -3
- package/package.json +1 -1
- package/skill/SKILL.md +20 -4
- package/skill/references/api-endpoints.md +2 -0
package/README.md
CHANGED
|
@@ -40,17 +40,19 @@ For terminal-first work, see [`@atollhq/cli`](https://www.npmjs.com/package/@ato
|
|
|
40
40
|
|
|
41
41
|
```bash
|
|
42
42
|
npm install -g @atollhq/cli
|
|
43
|
-
atoll auth
|
|
44
|
-
atoll config set-org your-org-slug
|
|
43
|
+
atoll auth setup
|
|
45
44
|
atoll issue list
|
|
46
45
|
```
|
|
47
46
|
|
|
48
47
|
For multiple agents or orgs, use CLI auth profiles:
|
|
49
48
|
|
|
50
49
|
```bash
|
|
51
|
-
atoll auth
|
|
50
|
+
atoll auth manage
|
|
51
|
+
atoll auth profiles
|
|
52
|
+
atoll auth login --profile agent-a --key sk_atoll_... --org acme --project project-uuid
|
|
52
53
|
atoll auth login --profile agent-b --key sk_atoll_... --org client
|
|
53
54
|
atoll --profile agent-b issue list
|
|
55
|
+
atoll auth delete-profile agent-b --force
|
|
54
56
|
```
|
|
55
57
|
|
|
56
58
|
## License
|
package/package.json
CHANGED
package/skill/SKILL.md
CHANGED
|
@@ -56,20 +56,29 @@ npm install -g @atollhq/cli # or: npx @atollhq/cli ...
|
|
|
56
56
|
Configure once:
|
|
57
57
|
|
|
58
58
|
```bash
|
|
59
|
-
atoll auth
|
|
60
|
-
|
|
59
|
+
atoll auth setup
|
|
60
|
+
|
|
61
|
+
# Or configure non-interactively:
|
|
62
|
+
atoll auth login --key sk_atoll_... --org my-org
|
|
61
63
|
```
|
|
62
64
|
|
|
63
65
|
For machines or agents that need multiple credentials, use auth profiles:
|
|
64
66
|
|
|
65
67
|
```bash
|
|
66
|
-
atoll auth
|
|
67
|
-
atoll auth
|
|
68
|
+
atoll auth setup
|
|
69
|
+
atoll auth manage
|
|
68
70
|
atoll auth profiles
|
|
69
71
|
atoll auth use agent-a
|
|
70
72
|
|
|
73
|
+
# Non-interactive profile setup can include default org/project context
|
|
74
|
+
atoll auth login --profile agent-a --key sk_atoll_... --org acme --project project-uuid
|
|
75
|
+
atoll auth login --profile agent-b --key sk_atoll_... --org client
|
|
76
|
+
|
|
71
77
|
# Run one command as a specific profile
|
|
72
78
|
atoll --profile agent-b issue list
|
|
79
|
+
|
|
80
|
+
# Remove an obsolete profile
|
|
81
|
+
atoll auth delete-profile agent-b --force
|
|
73
82
|
```
|
|
74
83
|
|
|
75
84
|
Common commands:
|
|
@@ -77,6 +86,7 @@ Common commands:
|
|
|
77
86
|
```bash
|
|
78
87
|
# List tasks
|
|
79
88
|
atoll issue list
|
|
89
|
+
atoll issue list --project <project-id>
|
|
80
90
|
atoll issue list --status todo --priority 1
|
|
81
91
|
|
|
82
92
|
# View a task
|
|
@@ -84,6 +94,7 @@ atoll issue view ATOLL-42
|
|
|
84
94
|
|
|
85
95
|
# Create a task
|
|
86
96
|
atoll issue create --title "Fix login bug" --status todo --priority 1
|
|
97
|
+
atoll issue create --title "Fix login bug" --project <project-id>
|
|
87
98
|
|
|
88
99
|
# Update a task
|
|
89
100
|
atoll issue update ATOLL-42 --status in_progress
|
|
@@ -97,9 +108,14 @@ atoll comment add ATOLL-42 --body "Working on this now"
|
|
|
97
108
|
|
|
98
109
|
# Projects & milestones
|
|
99
110
|
atoll project list
|
|
111
|
+
atoll config set-project <project-id> # optional default for issue/milestone commands
|
|
100
112
|
atoll milestone list --project <project-id>
|
|
113
|
+
atoll milestone list # uses the default project when configured
|
|
101
114
|
```
|
|
102
115
|
|
|
116
|
+
Profiles can store a default project ID. Explicit `--project` flags override it, and
|
|
117
|
+
`ATOLL_PROJECT` overrides profile config for one process.
|
|
118
|
+
|
|
103
119
|
## Quick Start — API (for advanced use)
|
|
104
120
|
|
|
105
121
|
All CLI commands map to REST endpoints. Use the API directly when the CLI doesn't cover a specific operation.
|
|
@@ -246,6 +246,8 @@ Filters: `by_me` = your actions; `mine` = activity on issues assigned to you.
|
|
|
246
246
|
|--------|----------|-------------|
|
|
247
247
|
| GET | `/api/orgs/{id}/teams` | List teams |
|
|
248
248
|
| POST | `/api/orgs/{id}/teams` | Create team |
|
|
249
|
+
| PATCH | `/api/orgs/{id}/teams/{teamId}` | Update team (`{ name?, slug?, description? }`) |
|
|
250
|
+
| DELETE | `/api/orgs/{id}/teams/{teamId}` | Delete team |
|
|
249
251
|
| GET | `/api/orgs/{id}/teams/{teamId}/members` | List team members |
|
|
250
252
|
| POST | `/api/orgs/{id}/teams/{teamId}/members` | Add member to team |
|
|
251
253
|
| DELETE | `/api/orgs/{id}/teams/{teamId}/members/{memberId}` | Remove from team |
|