@llodev/pm-tasks-asana 1.0.1 → 1.0.2

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,11 @@
1
1
  # @llodev/pm-tasks-asana
2
2
 
3
+ ## 1.0.2
4
+
5
+ ### Patch Changes
6
+
7
+ - Allow `defaults.escalateToAlias` (and `defaults.assigneeAlias` on Trello) in the config schemas. The v1.0.1 init scripts emit these keys, but the JSON Schemas still had `additionalProperties: false` rejecting them — making `npx @llodev/pm-tasks-{asana,trello} init` fail at the validate step with "must NOT have additional properties". Trello init also now emits `assigneeAlias: "me"` for parity with Asana.
8
+
3
9
  ## 1.0.1
4
10
 
5
11
  ### Patch Changes
package/SKILL.md CHANGED
@@ -7,16 +7,15 @@ description: >-
7
7
  existing tasks (check subtask, close task, change due-date, assign person,
8
8
  comment); OR when invoked autonomously by another agent with [autonomous] /
9
9
  --auto sentinel. Asana hierarchy: workspace > project > section > parent task
10
- > subtasks (one level), with custom fields and multi-assignee support.
11
- Modes: paste-ready (no MCP needed), MCP publish (via claude.ai Asana MCP),
12
- autonomous (write-through with allowlist). Implements 6 CRUD verbs
13
- (task.create, checklist.check, task.close, task.due-date.set,
14
- task.assignee.add, task.comment.add) from
15
- pm-tasks/pm-tasks-core/references/contract.md. Requires @llodev/pm-tasks-core
16
- installed.
10
+ > subtasks (one level), with custom fields and multi-assignee support. Modes:
11
+ paste-ready (no MCP needed), MCP publish (via claude.ai Asana MCP), autonomous
12
+ (write-through with allowlist). Implements 6 CRUD verbs (task.create,
13
+ checklist.check, task.close, task.due-date.set, task.assignee.add,
14
+ task.comment.add) from pm-tasks/pm-tasks-core/references/contract.md. Requires
15
+ @llodev/pm-tasks-core installed.
17
16
  license: MIT
18
17
  metadata:
19
- version: 1.0.0
18
+ version: 1.0.2
20
19
  tags:
21
20
  - agent-skill
22
21
  - asana
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@llodev/pm-tasks-asana",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
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",
@@ -109,7 +109,8 @@
109
109
  "projectAlias": { "type": "string" },
110
110
  "sectionAlias": { "type": "string" },
111
111
  "closeSectionAlias": { "type": "string" },
112
- "assigneeAlias": { "type": "string" }
112
+ "assigneeAlias": { "type": "string" },
113
+ "escalateToAlias": { "type": "string" }
113
114
  }
114
115
  },
115
116
  "taskAliases": {