@llodev/pm-tasks-asana 1.6.0 → 1.7.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 +11 -0
- package/README.md +5 -5
- package/SKILL.md +5 -7
- package/docs/i18n/README.es-ES.md +5 -5
- package/docs/i18n/README.pt-BR.md +5 -5
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# @llodev/pm-tasks-asana
|
|
2
2
|
|
|
3
|
+
## 1.7.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#41](https://github.com/llodev/skills/pull/41) [`dc31cdf`](https://github.com/llodev/skills/commit/dc31cdffe7dad3338f07190cdec43d71c9eb6f8b) Thanks [@lloliveiradev](https://github.com/lloliveiradev)! - Refresh published package metadata for the flattened `skills/` + `packages/` repository layout. `homepage` and `repository.directory` now point at the new paths, so npm and registry "Repository"/"Homepage" links resolve instead of 404ing against the removed `pm-tasks/*` and `django/*` folders. Documentation-only for consumers — no API, runtime, or behavior changes.
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [[`dc31cdf`](https://github.com/llodev/skills/commit/dc31cdffe7dad3338f07190cdec43d71c9eb6f8b)]:
|
|
12
|
+
- @llodev/pm-tasks-core@1.12.0
|
|
13
|
+
|
|
3
14
|
## 1.6.0
|
|
4
15
|
|
|
5
16
|
### Minor Changes
|
package/README.md
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
<!-- readme-selector:start -->
|
|
2
2
|
<p align="center">
|
|
3
|
-
<a href="https://github.com/llodev/skills/blob/main/
|
|
4
|
-
<a href="https://github.com/llodev/skills/blob/main/
|
|
5
|
-
<a href="https://github.com/llodev/skills/blob/main/
|
|
3
|
+
<a href="https://github.com/llodev/skills/blob/main/skills/pm-tasks-asana/README.md"><img src="https://raw.githubusercontent.com/lloliveiradev/public-assets/main/images/usa.svg" width="30" alt="English"></a>
|
|
4
|
+
<a href="https://github.com/llodev/skills/blob/main/skills/pm-tasks-asana/docs/i18n/README.pt-BR.md"><img src="https://raw.githubusercontent.com/lloliveiradev/public-assets/main/images/brazil.svg" width="30" alt="Português"></a>
|
|
5
|
+
<a href="https://github.com/llodev/skills/blob/main/skills/pm-tasks-asana/docs/i18n/README.es-ES.md"><img src="https://raw.githubusercontent.com/lloliveiradev/public-assets/main/images/spain.svg" width="30" alt="Español"></a>
|
|
6
6
|
</p>
|
|
7
7
|
<!-- readme-selector:end -->
|
|
8
8
|
|
|
@@ -29,8 +29,8 @@ What you get:
|
|
|
29
29
|
npm i @llodev/pm-tasks-core @llodev/pm-tasks-asana
|
|
30
30
|
|
|
31
31
|
# Vercel CLI (install core manually too)
|
|
32
|
-
npx skills add llodev/skills/
|
|
33
|
-
npx skills add llodev/skills/
|
|
32
|
+
npx skills add llodev/skills/skills/pm-tasks-core
|
|
33
|
+
npx skills add llodev/skills/skills/pm-tasks-asana
|
|
34
34
|
```
|
|
35
35
|
|
|
36
36
|
## Setup the MCP
|
package/SKILL.md
CHANGED
|
@@ -11,11 +11,11 @@ description: >-
|
|
|
11
11
|
paste-ready (no MCP needed), MCP publish (via claude.ai Asana MCP), autonomous
|
|
12
12
|
(write-through with allowlist). Implements 7 CRUD verbs (task.create,
|
|
13
13
|
task.move, checklist.check, task.close, task.due-date.set, task.assignee.add,
|
|
14
|
-
task.comment.add) from
|
|
14
|
+
task.comment.add) from skills/pm-tasks-core/references/contract.md. Requires
|
|
15
15
|
@llodev/pm-tasks-core installed.
|
|
16
16
|
license: MIT
|
|
17
17
|
metadata:
|
|
18
|
-
version: 1.
|
|
18
|
+
version: 1.7.0
|
|
19
19
|
tags:
|
|
20
20
|
- agent-skill
|
|
21
21
|
- asana
|
|
@@ -137,7 +137,7 @@ When the calling agent passes a plan reference (a path to a markdown plan file,
|
|
|
137
137
|
|
|
138
138
|
The skill does **not** assume any particular implementation strategy. It does not drive the calling agent's task loop, does not depend on any specific orchestration framework, and does not require any markup beyond what is already documented for `task.create` and the autonomous-mode contract. When the calling agent finishes a task and asks the skill to record progress, it invokes the standard verbs (`task.move`, `checklist.check`, `task.comment.add`, `task.close`) directly — the same path used by Phase 5b autonomous mode.
|
|
139
139
|
|
|
140
|
-
Full contract: triggers, discovery semantics, `ConfigRequiredError` handling, failure modes table, and the hook contract for Phase 5 are documented in [`
|
|
140
|
+
Full contract: triggers, discovery semantics, `ConfigRequiredError` handling, failure modes table, and the hook contract for Phase 5 are documented in [`skills/pm-tasks-core/references/plan-execution.md`](../pm-tasks-core/references/plan-execution.md) (added in v1.9.0).
|
|
141
141
|
|
|
142
142
|
## Result envelope
|
|
143
143
|
|
|
@@ -149,9 +149,7 @@ Every verb returns the core contract shape (see [`../pm-tasks-core/references/co
|
|
|
149
149
|
"verb": "task.create",
|
|
150
150
|
"tool": "asana",
|
|
151
151
|
"ref": { "id": "<gid>", "url": "https://app.asana.com/0/<project>/<gid>", "alias": "<optional>" },
|
|
152
|
-
"details": {
|
|
153
|
-
/* Asana-specific (see table below) */
|
|
154
|
-
}
|
|
152
|
+
"details": {/* Asana-specific (see table below) */}
|
|
155
153
|
}
|
|
156
154
|
```
|
|
157
155
|
|
|
@@ -195,4 +193,4 @@ Pass `--doctor` to run workspace health checks before prompting:
|
|
|
195
193
|
npx @llodev/pm-tasks-asana init --doctor
|
|
196
194
|
```
|
|
197
195
|
|
|
198
|
-
Runs core checks (C-FS-1..3, C-CFG-1..4) plus Asana-specific probes (C-ASN-1..3, gated on `LLODEV_PM_TASKS_ASANA_PAT`). Full check matrix in [`
|
|
196
|
+
Runs core checks (C-FS-1..3, C-CFG-1..4) plus Asana-specific probes (C-ASN-1..3, gated on `LLODEV_PM_TASKS_ASANA_PAT`). Full check matrix in [`skills/pm-tasks-core/references/doctor.md`](../pm-tasks-core/references/doctor.md).
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
<!-- readme-selector:start -->
|
|
2
2
|
<p align="center">
|
|
3
|
-
<a href="https://github.com/llodev/skills/blob/main/
|
|
4
|
-
<a href="https://github.com/llodev/skills/blob/main/
|
|
5
|
-
<a href="https://github.com/llodev/skills/blob/main/
|
|
3
|
+
<a href="https://github.com/llodev/skills/blob/main/skills/pm-tasks-asana/README.md"><img src="https://raw.githubusercontent.com/lloliveiradev/public-assets/main/images/usa.svg" width="30" alt="English"></a>
|
|
4
|
+
<a href="https://github.com/llodev/skills/blob/main/skills/pm-tasks-asana/docs/i18n/README.pt-BR.md"><img src="https://raw.githubusercontent.com/lloliveiradev/public-assets/main/images/brazil.svg" width="30" alt="Português"></a>
|
|
5
|
+
<a href="https://github.com/llodev/skills/blob/main/skills/pm-tasks-asana/docs/i18n/README.es-ES.md"><img src="https://raw.githubusercontent.com/lloliveiradev/public-assets/main/images/spain.svg" width="30" alt="Español"></a>
|
|
6
6
|
</p>
|
|
7
7
|
<!-- readme-selector:end -->
|
|
8
8
|
|
|
@@ -29,8 +29,8 @@ Lo que obtienes:
|
|
|
29
29
|
npm i @llodev/pm-tasks-core @llodev/pm-tasks-asana
|
|
30
30
|
|
|
31
31
|
# Vercel CLI (instala el core manualmente también)
|
|
32
|
-
npx skills add llodev/skills/
|
|
33
|
-
npx skills add llodev/skills/
|
|
32
|
+
npx skills add llodev/skills/skills/pm-tasks-core
|
|
33
|
+
npx skills add llodev/skills/skills/pm-tasks-asana
|
|
34
34
|
```
|
|
35
35
|
|
|
36
36
|
## Setup del MCP
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
<!-- readme-selector:start -->
|
|
2
2
|
<p align="center">
|
|
3
|
-
<a href="https://github.com/llodev/skills/blob/main/
|
|
4
|
-
<a href="https://github.com/llodev/skills/blob/main/
|
|
5
|
-
<a href="https://github.com/llodev/skills/blob/main/
|
|
3
|
+
<a href="https://github.com/llodev/skills/blob/main/skills/pm-tasks-asana/README.md"><img src="https://raw.githubusercontent.com/lloliveiradev/public-assets/main/images/usa.svg" width="30" alt="English"></a>
|
|
4
|
+
<a href="https://github.com/llodev/skills/blob/main/skills/pm-tasks-asana/docs/i18n/README.pt-BR.md"><img src="https://raw.githubusercontent.com/lloliveiradev/public-assets/main/images/brazil.svg" width="30" alt="Português"></a>
|
|
5
|
+
<a href="https://github.com/llodev/skills/blob/main/skills/pm-tasks-asana/docs/i18n/README.es-ES.md"><img src="https://raw.githubusercontent.com/lloliveiradev/public-assets/main/images/spain.svg" width="30" alt="Español"></a>
|
|
6
6
|
</p>
|
|
7
7
|
<!-- readme-selector:end -->
|
|
8
8
|
|
|
@@ -29,8 +29,8 @@ O que você ganha:
|
|
|
29
29
|
npm i @llodev/pm-tasks-core @llodev/pm-tasks-asana
|
|
30
30
|
|
|
31
31
|
# Vercel CLI (instale o core manualmente também)
|
|
32
|
-
npx skills add llodev/skills/
|
|
33
|
-
npx skills add llodev/skills/
|
|
32
|
+
npx skills add llodev/skills/skills/pm-tasks-core
|
|
33
|
+
npx skills add llodev/skills/skills/pm-tasks-asana
|
|
34
34
|
```
|
|
35
35
|
|
|
36
36
|
## Setup do MCP
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@llodev/pm-tasks-asana",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.7.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
|
-
"homepage": "https://github.com/llodev/skills/tree/main/
|
|
6
|
+
"homepage": "https://github.com/llodev/skills/tree/main/skills/pm-tasks-asana",
|
|
7
7
|
"repository": {
|
|
8
8
|
"type": "git",
|
|
9
9
|
"url": "https://github.com/llodev/skills.git",
|
|
10
|
-
"directory": "
|
|
10
|
+
"directory": "skills/pm-tasks-asana"
|
|
11
11
|
},
|
|
12
12
|
"main": "./dist/bin/init.js",
|
|
13
13
|
"types": "./dist/bin/init.d.ts",
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
"dependencies": {
|
|
52
52
|
"ajv": "^8.17.1",
|
|
53
53
|
"ajv-formats": "^3.0.1",
|
|
54
|
-
"@llodev/pm-tasks-core": "^1.
|
|
54
|
+
"@llodev/pm-tasks-core": "^1.12.0"
|
|
55
55
|
},
|
|
56
56
|
"publishConfig": {
|
|
57
57
|
"access": "public"
|