@postplus/cli 0.1.9 → 0.1.10
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/README.md +2 -2
- package/build/skill-catalog.js +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -12,7 +12,7 @@ Requires Node.js `>=20.10.0` and npm.
|
|
|
12
12
|
```bash
|
|
13
13
|
npm install -g @postplus/cli
|
|
14
14
|
postplus auth login
|
|
15
|
-
npx -y skills add PostPlusAI/postplus-skills --skill '*' --agent claude-code codex cursor --yes
|
|
15
|
+
npx -y skills add PostPlusAI/postplus-skills --full-depth --skill '*' --agent claude-code codex cursor --yes
|
|
16
16
|
```
|
|
17
17
|
|
|
18
18
|
## Commands
|
|
@@ -31,5 +31,5 @@ npx -y skills add PostPlusAI/postplus-skills --skill '*' --agent claude-code cod
|
|
|
31
31
|
installation commands. Use:
|
|
32
32
|
|
|
33
33
|
```bash
|
|
34
|
-
npx -y skills add PostPlusAI/postplus-skills --skill '*' --agent claude-code codex cursor --yes
|
|
34
|
+
npx -y skills add PostPlusAI/postplus-skills --full-depth --skill '*' --agent claude-code codex cursor --yes
|
|
35
35
|
```
|
package/build/skill-catalog.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export const POSTPLUS_SKILLS_REPO = 'PostPlusAI/postplus-skills';
|
|
2
|
-
export const POSTPLUS_SKILLS_INSTALL_COMMAND = "npx -y skills add PostPlusAI/postplus-skills --skill '*' --agent claude-code codex cursor --yes";
|
|
3
|
-
export const POSTPLUS_SKILLS_LIST_COMMAND = 'npx -y skills add PostPlusAI/postplus-skills --list';
|
|
2
|
+
export const POSTPLUS_SKILLS_INSTALL_COMMAND = "npx -y skills add PostPlusAI/postplus-skills --full-depth --skill '*' --agent claude-code codex cursor --yes";
|
|
3
|
+
export const POSTPLUS_SKILLS_LIST_COMMAND = 'npx -y skills add PostPlusAI/postplus-skills --list --full-depth';
|
|
4
4
|
const POSTPLUS_SKILLS_INDEX_URL = 'https://raw.githubusercontent.com/PostPlusAI/postplus-skills/main/skills/INDEX.md';
|
|
5
5
|
export async function loadPublicSkillCatalog() {
|
|
6
6
|
const response = await fetch(POSTPLUS_SKILLS_INDEX_URL, {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@postplus/cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.10",
|
|
4
4
|
"packageManager": "pnpm@10.30.3+sha512.c961d1e0a2d8e354ecaa5166b822516668b7f44cb5bd95122d590dd81922f606f5473b6d23ec4a5be05e7fcd18e8488d47d978bbe981872f1145d06e9a740017",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"description": "PostPlus CLI for PostPlus Cloud auth, status, and diagnostics.",
|