@atollhq/skill-gemini 0.4.0 → 0.4.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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/skill/SKILL.md +70 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atollhq/skill-gemini",
3
- "version": "0.4.0",
3
+ "version": "0.4.1",
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
@@ -163,6 +163,76 @@ CLI JSON conventions:
163
163
  - `atoll agent-context` returns a versioned command/flag manifest and available profile context.
164
164
  - `atoll plan validate/apply` consumes `schemaVersion: "atoll.plan.v1"` files with `milestones`, `issues`, `dependencies`, `initiativeLinks`, and `milestoneLinks`; local `key` values can be referenced by `milestoneKey`, `issueKey`, `dependsOn`, `blockedBy`, or `blocks`.
165
165
 
166
+ ## AI-Assisted Setup
167
+
168
+ When a user needs help setting up Atoll, lean into the AI workflow. Atoll is most useful when the user's AI assistant helps turn messy context into projects, issues, goals, KPIs, and agent instructions.
169
+
170
+ If you are the AI assistant with CLI access, prefer doing the setup directly after confirming the intended org/profile and scope. Start with read-only orientation:
171
+
172
+ ```bash
173
+ atoll auth profiles
174
+ atoll heartbeat --json
175
+ atoll issue list --json --limit 10
176
+ ```
177
+
178
+ If the user is setting up Atoll in another AI tool, give them a copyable prompt. Keep secrets out of chat: tell the user to run auth commands locally and never ask them to paste `sk_atoll_...` keys into a model conversation unless they explicitly choose that risk.
179
+
180
+ ### Prompt: Create the First Board
181
+
182
+ ```text
183
+ I am setting up Atoll for my team. Help me create the first project an AI agent could understand.
184
+ Ask me 3-5 questions about the current push, then propose:
185
+ - one project name
186
+ - the outcome this project should drive
187
+ - 3-5 initial issues with clear titles, context, priorities, and owners if known
188
+ - which issue an agent should pick up first and why
189
+ Keep the setup small. I want a useful first board, not a full migration.
190
+ ```
191
+
192
+ ### Prompt: Turn a Project Into Issues
193
+
194
+ ```text
195
+ I have an Atoll project but need help turning it into actionable issues.
196
+ Interview me about the project, then write 5 issues an AI agent could execute.
197
+ For each issue include:
198
+ - title
199
+ - why it matters
200
+ - acceptance criteria
201
+ - suggested priority
202
+ - any context the agent would need before starting
203
+ Make the issues specific enough that I can paste them into Atoll with minimal editing.
204
+ ```
205
+
206
+ ### Prompt: Install and Authenticate the CLI
207
+
208
+ ```text
209
+ Help me connect this workspace to Atoll.
210
+ First, explain what the Atoll CLI will let you do and what credentials you need.
211
+ Then walk me through installing @atollhq/cli, adding an agent in Atoll, authenticating with the API key, and running a safe read-only check like `atoll issue list`.
212
+ Do not ask me to paste secrets into chat unless I explicitly choose to. Tell me where to run each command locally.
213
+ ```
214
+
215
+ ### Prompt: Run the First Heartbeat
216
+
217
+ ```text
218
+ You are helping me set up Atoll for agentic project management.
219
+ Use the Atoll CLI to orient before doing any work.
220
+ Run `atoll heartbeat`, summarize what you can see, identify the highest-leverage next action, and tell me whether you have enough access to list issues and update your assigned work.
221
+ If anything is missing, explain the exact setup step I need to complete in Atoll.
222
+ ```
223
+
224
+ ### Prompt: Draft the Strategy Chain
225
+
226
+ ```text
227
+ Help me define the strategy chain for my Atoll workspace.
228
+ Ask me what business outcome matters most this month, then propose:
229
+ - one goal with a clear target date
230
+ - 1-2 KPIs that show whether we are on pace
231
+ - one initiative expected to move the KPI
232
+ - 3 issues that belong under that initiative
233
+ Keep it practical. I want the smallest strategy layer that would help an AI agent choose better work.
234
+ ```
235
+
166
236
  ## Quick Start — API (for advanced use)
167
237
 
168
238
  All CLI commands map to REST endpoints. Use the API directly when the CLI doesn't cover a specific operation.