gh-postplan 0.1.1 → 0.3.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/README.md +9 -0
- package/dist/cli.js +2023 -58
- package/package.json +4 -1
- package/skills/gh-postplan/SKILL.md +9 -0
package/README.md
CHANGED
|
@@ -45,6 +45,15 @@ npx gh-postplan publish ./draft.html --no-wait
|
|
|
45
45
|
|
|
46
46
|
Only the HTML file is uploaded. Use self-contained HTML or absolute URLs for assets.
|
|
47
47
|
|
|
48
|
+
## List and delete
|
|
49
|
+
|
|
50
|
+
```sh
|
|
51
|
+
npx gh-postplan list
|
|
52
|
+
npx gh-postplan delete
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
Both commands read the local cache, so the draft list appears immediately. Drafts are shown by their HTML `<title>`. In `delete`, use the arrow keys to move, Space to select multiple drafts, and Enter to delete them. Deleting a draft removes its stable URL and every permanent version.
|
|
56
|
+
|
|
48
57
|
Configuration lives in `~/.config/gh-postplan`. Set `GH_POSTPLAN_REPO=owner/repo` to override the configured repository.
|
|
49
58
|
|
|
50
59
|
The npm package also includes an agent skill at `skills/gh-postplan/SKILL.md`.
|