@atollhq/skill-claude 0.4.3 → 0.4.4

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atollhq/skill-claude",
3
- "version": "0.4.3",
3
+ "version": "0.4.4",
4
4
  "description": "Install the Atoll project management skill for Claude Code",
5
5
  "bin": {
6
6
  "skill-claude": "bin/install.mjs"
package/skill/SKILL.md CHANGED
@@ -149,6 +149,7 @@ atoll feedback "The status error should list custom board statuses"
149
149
 
150
150
  # Projects & milestones
151
151
  atoll project list
152
+ atoll project delete <project-id> --confirm DELETE
152
153
  atoll milestone list --project <project-id>
153
154
  atoll milestone upsert --project <project-id> --name "v1.0" --date 2026-06-01
154
155
 
@@ -64,7 +64,7 @@ All endpoints require `Authorization: Bearer sk_atoll_...` header.
64
64
  | POST | `/api/orgs/{id}/projects` | Create project (`{ name, description?, visibility?, color?, icon?, github_repo? }`) |
65
65
  | GET | `/api/orgs/{id}/projects/{projectId}` | Get project with issues |
66
66
  | PATCH | `/api/orgs/{id}/projects/{projectId}` | Update project (`{ name?, description?, status?, visibility?, color?, icon? }`) |
67
- | DELETE | `/api/orgs/{id}/projects/{projectId}` | Delete project (owner/admin) |
67
+ | DELETE | `/api/orgs/{id}/projects/{projectId}` | Permanently delete project and all tasks in it (owner/admin; body must include `{ "confirmation": "DELETE" }`) |
68
68
 
69
69
  Guest users only see projects they are assigned to.
70
70