@ivotoby/postgram-cli 1.0.4 → 1.0.6
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
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
# @postgram
|
|
1
|
+
# @ivotoby/postgram-cli
|
|
2
2
|
|
|
3
|
-
Command-line client for [Postgram](https://github.com/
|
|
3
|
+
Command-line client for [Postgram](https://github.com/ivo-toby/postgram/).
|
|
4
4
|
|
|
5
5
|
## Install
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
|
-
npm install -g @postgram
|
|
8
|
+
npm install -g @ivotoby/postgram-cli
|
|
9
9
|
```
|
|
10
10
|
|
|
11
11
|
## Configure
|
|
@@ -60,10 +60,19 @@ pgm sync ./notes --repo my-notes
|
|
|
60
60
|
pgm store "hello" --json
|
|
61
61
|
```
|
|
62
62
|
|
|
63
|
+
## Claude Code skill
|
|
64
|
+
|
|
65
|
+
A portable Claude Code skill for using `pgm` from your agent lives in
|
|
66
|
+
[`skill/postgram/SKILL.md`](https://github.com/ivo-toby/postgram/blob/main/skill/postgram/SKILL.md)
|
|
67
|
+
in the main repo. Copy the `skill/postgram/` directory into your own project's
|
|
68
|
+
`.claude/skills/` (or your user-level `~/.claude/skills/`) and the agent will
|
|
69
|
+
know when to invoke `pgm store`, `pgm search`, `pgm link`, etc.
|
|
70
|
+
|
|
63
71
|
## Development
|
|
64
72
|
|
|
65
73
|
```bash
|
|
66
|
-
|
|
74
|
+
git clone https://github.com/ivo-toby/postgram/
|
|
75
|
+
cd postgram/cli
|
|
67
76
|
npm install
|
|
68
77
|
npm run build
|
|
69
78
|
npm test
|
|
@@ -71,4 +80,4 @@ npm test
|
|
|
71
80
|
|
|
72
81
|
## License
|
|
73
82
|
|
|
74
|
-
MIT
|
|
83
|
+
MIT
|
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ivotoby/postgram-cli",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.6",
|
|
4
4
|
"description": "Postgram CLI — store, search, and manage entities from the command line",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
|
-
"pgm": "dist/
|
|
7
|
+
"pgm": "dist/pgm.js"
|
|
8
8
|
},
|
|
9
9
|
"files": [
|
|
10
|
-
"dist
|
|
10
|
+
"dist",
|
|
11
11
|
"README.md"
|
|
12
12
|
],
|
|
13
13
|
"repository": {
|
|
@@ -31,7 +31,8 @@
|
|
|
31
31
|
"access": "public"
|
|
32
32
|
},
|
|
33
33
|
"scripts": {
|
|
34
|
-
"build": "tsc -p tsconfig.json",
|
|
34
|
+
"build": "tsc -p tsconfig.build.json",
|
|
35
|
+
"prepublishOnly": "npm run build",
|
|
35
36
|
"test": "vitest run",
|
|
36
37
|
"test:watch": "vitest",
|
|
37
38
|
"lint": "eslint .",
|
|
File without changes
|
|
File without changes
|
|
File without changes
|