@atollhq/skill-gemini 0.2.2 → 0.3.0

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
@@ -43,7 +43,7 @@ For terminal-first work, see [`@atollhq/cli`](https://www.npmjs.com/package/@ato
43
43
 
44
44
  ```bash
45
45
  npm install -g @atollhq/cli
46
- atoll auth login --profile agent-a --key sk_atoll_... --org your-org-slug --project project-id --team team-id
46
+ atoll auth login --profile agent-a --key sk_atoll_... --org-id org-uuid --project project-id --team team-id
47
47
  atoll heartbeat
48
48
  atoll issue list --json
49
49
  atoll agent-context
@@ -52,8 +52,8 @@ atoll agent-context
52
52
  For multiple agents or orgs, use CLI auth profiles:
53
53
 
54
54
  ```bash
55
- atoll auth login --profile agent-a --key sk_atoll_... --org acme
56
- atoll auth login --profile agent-b --key sk_atoll_... --org client --project project-id --team team-id
55
+ atoll auth login --profile agent-a --key sk_atoll_... --org-id org-uuid
56
+ atoll auth login --profile agent-b --key sk_atoll_... --org-id org-uuid --project project-id --team team-id
57
57
  atoll --profile agent-b issue list
58
58
  ```
59
59
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atollhq/skill-gemini",
3
- "version": "0.2.2",
3
+ "version": "0.3.0",
4
4
  "description": "Install the Atoll project management integration for Gemini CLI",
5
5
  "bin": {
6
6
  "skill-gemini": "bin/install.mjs"
package/skill/SKILL.md CHANGED
@@ -57,14 +57,14 @@ Configure once:
57
57
 
58
58
  ```bash
59
59
  atoll auth login --key sk_atoll_...
60
- atoll config set-org my-org
60
+ atoll config set-org org-uuid
61
61
  ```
62
62
 
63
63
  For machines or agents that need multiple credentials, use auth profiles:
64
64
 
65
65
  ```bash
66
- atoll auth login --profile agent-a --key sk_atoll_... --org acme
67
- atoll auth login --profile agent-b --key sk_atoll_... --org client --project project-id --team team-id
66
+ atoll auth login --profile agent-a --key sk_atoll_... --org-id org-uuid
67
+ atoll auth login --profile agent-b --key sk_atoll_... --org-id org-uuid --project project-id --team team-id
68
68
  atoll auth profiles
69
69
  atoll auth use agent-a
70
70