@atollhq/skill-gemini 0.2.2 → 0.3.1
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 +6 -4
- package/skill/references/api-fields.md +3 -1
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
|
|
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,11 +52,13 @@ 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
|
|
56
|
-
atoll auth login --profile agent-b --key sk_atoll_... --org
|
|
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
|
|
|
60
|
+
Always persist `--org-id` on named profiles, or pass `--org-id` per command. Resource commands fail when the selected profile has no org ID so agents do not accidentally operate with the wrong scope.
|
|
61
|
+
|
|
60
62
|
The companion CLI also supports safer issue removal and upstream feedback with local retry drafts:
|
|
61
63
|
|
|
62
64
|
```bash
|
package/package.json
CHANGED
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
|
|
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
|
|
67
|
-
atoll auth login --profile agent-b --key sk_atoll_... --org
|
|
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
|
|
|
@@ -72,7 +72,9 @@ atoll auth use agent-a
|
|
|
72
72
|
atoll --profile agent-b issue list
|
|
73
73
|
```
|
|
74
74
|
|
|
75
|
-
Profiles can store default project, team, and base URL values.
|
|
75
|
+
Profiles can store default org ID, project, team, and base URL values. For named profiles, always persist `--org-id` or pass `--org-id` per command. Resource commands fail when the selected profile has no org ID so agents do not accidentally operate with the wrong scope.
|
|
76
|
+
|
|
77
|
+
`atoll issue list` and `atoll issue create` apply the selected default team unless a command-level `--team` override is passed.
|
|
76
78
|
|
|
77
79
|
Common commands:
|
|
78
80
|
|
|
@@ -129,7 +129,7 @@ Recording a snapshot auto-updates the KPI's `current_value`.
|
|
|
129
129
|
For portfolio-style initiatives (grouping projects):
|
|
130
130
|
```json
|
|
131
131
|
{
|
|
132
|
-
"
|
|
132
|
+
"title": "Q2 Platform Rewrite",
|
|
133
133
|
"description": "Migrate all services to new architecture",
|
|
134
134
|
"owner_id": "member-uuid",
|
|
135
135
|
"start_date": "2026-04-01",
|
|
@@ -137,6 +137,8 @@ For portfolio-style initiatives (grouping projects):
|
|
|
137
137
|
}
|
|
138
138
|
```
|
|
139
139
|
|
|
140
|
+
Use `title` for create/update requests; Atoll keeps the legacy `name` field in sync for compatibility.
|
|
141
|
+
|
|
140
142
|
Add/remove projects with `{ "project_id": "uuid" }`.
|
|
141
143
|
|
|
142
144
|
## Automation Rule Fields
|