@llodev/pm-tasks 1.0.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/LICENSE +21 -0
- package/README.md +29 -0
- package/package.json +32 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 LLDev Information Solutions
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
# @llodev/pm-tasks
|
|
2
|
+
|
|
3
|
+
Meta-package for the `@llodev/pm-tasks-*` family. Installs the core skill plus every published adapter (Trello, Asana) in one command.
|
|
4
|
+
|
|
5
|
+
## Install
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm i @llodev/pm-tasks
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
This pulls in:
|
|
12
|
+
|
|
13
|
+
- [`@llodev/pm-tasks-core`](https://www.npmjs.com/package/@llodev/pm-tasks-core) — shared extraction + CRUD vocabulary.
|
|
14
|
+
- [`@llodev/pm-tasks-trello`](https://www.npmjs.com/package/@llodev/pm-tasks-trello) — Trello adapter.
|
|
15
|
+
- [`@llodev/pm-tasks-asana`](https://www.npmjs.com/package/@llodev/pm-tasks-asana) — Asana adapter.
|
|
16
|
+
|
|
17
|
+
After install, follow each adapter's README for MCP setup and `init`.
|
|
18
|
+
|
|
19
|
+
## Why a meta-package?
|
|
20
|
+
|
|
21
|
+
If you only need one adapter, install it directly (`npm i @llodev/pm-tasks-trello` — `@llodev/pm-tasks-core` comes as a dependency). The meta-package is convenience for the whole family.
|
|
22
|
+
|
|
23
|
+
## Versioning
|
|
24
|
+
|
|
25
|
+
This package follows the v1.0.0 release of the family. Adapters are pinned via `peerDependencies` so npm warns on incompatible upgrades. Bumped in lockstep at release time via Changesets.
|
|
26
|
+
|
|
27
|
+
## License
|
|
28
|
+
|
|
29
|
+
MIT — see [LICENSE](./LICENSE).
|
package/package.json
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@llodev/pm-tasks",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Meta-package: installs the entire @llodev/pm-tasks-* family (core + Trello + Asana).",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "git+https://github.com/llodev/skills.git",
|
|
9
|
+
"directory": "pm-tasks/pm-tasks"
|
|
10
|
+
},
|
|
11
|
+
"peerDependencies": {
|
|
12
|
+
"@llodev/pm-tasks-core": "^1.0.0",
|
|
13
|
+
"@llodev/pm-tasks-trello": "^1.0.0",
|
|
14
|
+
"@llodev/pm-tasks-asana": "^1.0.0"
|
|
15
|
+
},
|
|
16
|
+
"devDependencies": {
|
|
17
|
+
"@llodev/pm-tasks-core": "1.0.0",
|
|
18
|
+
"@llodev/pm-tasks-trello": "1.0.0",
|
|
19
|
+
"@llodev/pm-tasks-asana": "1.0.0"
|
|
20
|
+
},
|
|
21
|
+
"files": [
|
|
22
|
+
"README.md"
|
|
23
|
+
],
|
|
24
|
+
"keywords": [
|
|
25
|
+
"agent-skill",
|
|
26
|
+
"pm-tasks",
|
|
27
|
+
"meta-package"
|
|
28
|
+
],
|
|
29
|
+
"publishConfig": {
|
|
30
|
+
"access": "public"
|
|
31
|
+
}
|
|
32
|
+
}
|