@gpambrozio/paseo-skills 0.1.2 → 0.2.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 +20 -0
- package/README.md +2 -2
- package/package.json +4 -4
- package/paseo-plugin.json +1 -1
- package/server/sdk-types.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,26 @@ follow [Semantic Versioning](https://semver.org/spec/v2.0.0.html). Every version
|
|
|
7
7
|
as `@gpambrozio/paseo-skills` and tagged here, so a version is something to install and a line to
|
|
8
8
|
read before you move.
|
|
9
9
|
|
|
10
|
+
## [0.2.0] — 2026-09-22
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
|
|
14
|
+
- **A one-line description of the plugin**, shown next to it in Paseo's plugins list, so it is
|
|
15
|
+
clear what it does without opening it.
|
|
16
|
+
|
|
17
|
+
### Changed
|
|
18
|
+
|
|
19
|
+
- **Paseo 0.9 or newer is now required.** On 0.8 this version will not load. Staying on 0.8 means
|
|
20
|
+
staying on the previous release, which keeps working.
|
|
21
|
+
|
|
22
|
+
## [0.1.3] — 2026-09-19
|
|
23
|
+
|
|
24
|
+
### Fixed
|
|
25
|
+
|
|
26
|
+
- **Loads on Paseo 0.8 again.** 0.8 rejects any manifest key it does not recognise, and the
|
|
27
|
+
previous release added one, so the plugin refused to load there at all. On 0.9 and newer nothing
|
|
28
|
+
was wrong and nothing changes now.
|
|
29
|
+
|
|
10
30
|
## [0.1.2] — 2026-09-19
|
|
11
31
|
|
|
12
32
|
### Added
|
package/README.md
CHANGED
|
@@ -9,7 +9,7 @@ its running session reports.
|
|
|
9
9
|
|
|
10
10
|
## Install
|
|
11
11
|
|
|
12
|
-
Requires the [Paseo](https://paseo.sh) CLI and a running daemon, both **0.
|
|
12
|
+
Requires the [Paseo](https://paseo.sh) CLI and a running daemon, both **0.9.0 or newer** — as well
|
|
13
13
|
as the app you view the panel in, which checks the version itself.
|
|
14
14
|
|
|
15
15
|
```bash
|
|
@@ -17,7 +17,7 @@ paseo plugin install npm:@gpambrozio/paseo-skills
|
|
|
17
17
|
```
|
|
18
18
|
|
|
19
19
|
That is the shortest route on **Paseo 0.9 or newer**, which installs plugins straight from npm; add
|
|
20
|
-
`@<version>` to pin one. On 0.8, install from this repository instead:
|
|
20
|
+
`@<version>` to pin one. On 0.8, install the last release that supported it from this repository instead:
|
|
21
21
|
|
|
22
22
|
```bash
|
|
23
23
|
paseo plugin add gpambrozio/paseo-plugins --path skills
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gpambrozio/paseo-skills",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"description": "Paseo plugin: lists the skills an agent can use, shows where each comes from, renders its SKILL.md, and invokes it",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"homepage": "https://github.com/gpambrozio/paseo-plugins/tree/main/skills",
|
|
@@ -29,9 +29,9 @@
|
|
|
29
29
|
"test": "vitest run --passWithNoTests"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
|
-
"@getpaseo/client": "0.
|
|
33
|
-
"@getpaseo/plugin": "0.
|
|
34
|
-
"@getpaseo/protocol": "0.
|
|
32
|
+
"@getpaseo/client": "0.9.0",
|
|
33
|
+
"@getpaseo/plugin": "0.9.0",
|
|
34
|
+
"@getpaseo/protocol": "0.9.0",
|
|
35
35
|
"@tanstack/react-query": "^5.102.8",
|
|
36
36
|
"@types/node": "^26.5.0",
|
|
37
37
|
"@types/react": "~19.2.0",
|
package/paseo-plugin.json
CHANGED
package/server/sdk-types.ts
CHANGED
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
* - types degraded → the access is `any`, no error → TS2578 "Unused
|
|
15
15
|
* '@ts-expect-error' directive" → fail
|
|
16
16
|
*
|
|
17
|
-
* This replaces the throwaway file the root
|
|
17
|
+
* This replaces the throwaway file the root AGENTS.md used to ask contributors
|
|
18
18
|
* to write by hand. It is type-only, so it contributes nothing to either bundle.
|
|
19
19
|
*/
|
|
20
20
|
import type { PaseoAgentHandle } from "@getpaseo/client";
|