@maccesar/aiskills 1.9.1 → 1.9.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/README.md +1 -1
- package/lib/commands/status.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -19,7 +19,7 @@ Each skill is a small knowledge package: a `SKILL.md` file with YAML frontmatter
|
|
|
19
19
|
### Option A: Plugin Marketplace (Claude Code only)
|
|
20
20
|
|
|
21
21
|
```bash
|
|
22
|
-
/plugin marketplace add
|
|
22
|
+
/plugin marketplace add maccesar/aiskills
|
|
23
23
|
/plugin install aiskills@maccesar-aiskills
|
|
24
24
|
```
|
|
25
25
|
|
package/lib/commands/status.js
CHANGED
|
@@ -73,7 +73,7 @@ export async function statusCommand() {
|
|
|
73
73
|
console.log(` Version: v${PACKAGE_VERSION}`);
|
|
74
74
|
console.log(` Skills: ${installedCount}/${totalCount} installed`);
|
|
75
75
|
console.log(` Hook: Claude Code SessionStart ${hookExists ? CHECK : CROSS}`);
|
|
76
|
-
console.log(` Last check: ${formatLastCheck(lastCheck)}`);
|
|
76
|
+
console.log(` Last npm check: ${formatLastCheck(lastCheck)}`);
|
|
77
77
|
|
|
78
78
|
// Platforms
|
|
79
79
|
console.log('');
|