@llodev/pm-tasks-asana 1.2.0 → 1.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/CHANGELOG.md CHANGED
@@ -1,5 +1,25 @@
1
1
  # @llodev/pm-tasks-asana
2
2
 
3
+ ## 1.3.0
4
+
5
+ ### Minor Changes
6
+
7
+ - Introduce adapter `manifest.json` + custom-verbs extension API. Each adapter now declares which canonical verbs it implements plus any tool-specific verbs under a `<tool>.*` namespace. `contract-check.mjs` validates the manifest against `adapter-manifest.schema.json`, enforces the `<tool>.<verb>` namespace prefix, and cross-checks each declared verb against the adapter's `SKILL.md`. The same gate now permits additive-only changes to `contract.md` as non-major (deletions still require major). No runtime behaviour changes for existing consumers.
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies []:
12
+ - @llodev/pm-tasks-core@1.3.0
13
+
14
+ ## 1.2.1
15
+
16
+ ### Patch Changes
17
+
18
+ - [`9f14fe0`](https://github.com/llodev/skills/commit/9f14fe099d8e44fdc01aeb96cdde24aa4fa14527) - CI: release workflow now runs `validate` + `contract:check` + `pre-release` (skill-judge gate) before publish, and a new `scripts/tarball-snapshot.test.mjs` (wired into `pnpm validate`) detects regressions in each package's `files` field. npm publishes use `NPM_CONFIG_PROVENANCE=true` for supply-chain attestation (requires `id-token: write` permission in the workflow). No runtime changes.
19
+
20
+ - Updated dependencies [[`9f14fe0`](https://github.com/llodev/skills/commit/9f14fe099d8e44fdc01aeb96cdde24aa4fa14527)]:
21
+ - @llodev/pm-tasks-core@1.2.1
22
+
3
23
  ## 1.2.0
4
24
 
5
25
  ### Minor Changes
package/SKILL.md CHANGED
@@ -15,7 +15,7 @@ description: >-
15
15
  @llodev/pm-tasks-core installed.
16
16
  license: MIT
17
17
  metadata:
18
- version: 1.2.0
18
+ version: 1.3.0
19
19
  tags:
20
20
  - agent-skill
21
21
  - asana
package/manifest.json ADDED
@@ -0,0 +1,11 @@
1
+ {
2
+ "tool": "asana",
3
+ "verbs": [
4
+ "task.create",
5
+ "task.close",
6
+ "task.due-date.set",
7
+ "task.assignee.add",
8
+ "task.comment.add",
9
+ "checklist.check"
10
+ ]
11
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@llodev/pm-tasks-asana",
3
- "version": "1.2.0",
3
+ "version": "1.3.0",
4
4
  "description": "Asana adapter for the @llodev/pm-tasks-* family. Use when the user mentions Asana (create Asana task, publish to Asana, post to Asana, add comment in Asana, --publish-asana, close task, check subtask) or wants to publish a plan as Asana tasks with subtasks. Modes: paste-ready (no MCP needed), MCP publish (via claude.ai Asana MCP), autonomous (sentinel [autonomous] / --auto). Implements 6 CRUD verbs from @llodev/pm-tasks-core/references/contract.md mapped to Asana (parent task + subtasks, custom fields, sections, multi-assignee). REQUIRES: @llodev/pm-tasks-core installed (skillpm / Claude Code marketplace cascade auto; Vercel CLI users install manually).",
5
5
  "license": "MIT",
6
6
  "homepage": "https://github.com/llodev/skills/tree/main/pm-tasks/pm-tasks-asana",
@@ -22,7 +22,8 @@
22
22
  "scripts",
23
23
  "i18n",
24
24
  "LICENSE",
25
- "CHANGELOG.md"
25
+ "CHANGELOG.md",
26
+ "manifest.json"
26
27
  ],
27
28
  "keywords": [
28
29
  "agent-skill",
@@ -36,7 +37,7 @@
36
37
  "pm-tasks-asana": "./scripts/init.mjs"
37
38
  },
38
39
  "dependencies": {
39
- "@llodev/pm-tasks-core": "^1.2.0"
40
+ "@llodev/pm-tasks-core": "^1.3.0"
40
41
  },
41
42
  "publishConfig": {
42
43
  "access": "public"