@sacho/sacho-aarch64-unknown-linux-musl 0.1.0-dev.11 → 0.1.0-dev.13

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.
Files changed (3) hide show
  1. package/README.md +60 -3
  2. package/package.json +1 -1
  3. package/sacho +0 -0
package/README.md CHANGED
@@ -55,6 +55,41 @@ Without mise, npm, or Cargo, download the archive for your platform from
55
55
  [GitHub Releases]: https://github.com/dahlia/sacho/releases
56
56
 
57
57
 
58
+ Agent Skill
59
+ -----------
60
+
61
+ Sacho ships an [Agent Skill] that teaches AI coding agents, such as Claude Code,
62
+ how to adopt and operate Sacho: writing fragments for users, cutting releases,
63
+ and forward-porting fixes across maintenance branches.
64
+
65
+ In Claude Code, install it as a plugin. Add this repository as a plugin
66
+ marketplace, then install the `sacho` plugin:
67
+
68
+ ~~~~ text
69
+ /plugin marketplace add dahlia/sacho
70
+ /plugin install sacho@sacho
71
+ ~~~~
72
+
73
+ For other agents, or to install the skill without the plugin system, use the
74
+ [`skills`] CLI, which reads the skill straight from this repository:
75
+
76
+ ~~~~ sh
77
+ npx skills add dahlia/sacho
78
+ ~~~~
79
+
80
+ Add `-a claude-code` to target one agent, `-g` to install it globally, and
81
+ `--skill sacho` to select the skill by name.
82
+
83
+ The skill is also bundled inside the `@sacho/sacho` npm package, following the
84
+ [`skills-npm`] layout. In a project that depends on that package, run
85
+ `npx skills-npm setup` once to link bundled skills from *node\_modules* into
86
+ your agent on every install.
87
+
88
+ [Agent Skill]: https://agentskills.io/
89
+ [`skills`]: https://github.com/vercel-labs/skills
90
+ [`skills-npm`]: https://github.com/antfu/skills-npm
91
+
92
+
58
93
  Documentation
59
94
  -------------
60
95
 
@@ -138,15 +173,27 @@ staged Git changes or `sacho check --base <revision>` in CI.
138
173
 
139
174
  When the version is ready, compile and consume its fragments. This command
140
175
  releases the version stored by `sacho next`, uses the current local date, and
141
- starts the next version:
176
+ closes the materialized unreleased region:
142
177
 
143
178
  ~~~~ sh
144
- sacho release --next 1.3.0
179
+ sacho release
145
180
  ~~~~
146
181
 
147
182
  If no next version has been set, pass the release version explicitly, for
148
183
  example `sacho release 1.2.0`. Use `--date YYYY-MM-DD` when the release date
149
- must be supplied rather than taken from the local clock.
184
+ must be supplied rather than taken from the local clock. A repository with no
185
+ released changelog sections can cut its first release without fragments. Later
186
+ empty releases require an explicit `--allow-empty`.
187
+
188
+ Commit and tag that released-only state. When development resumes, start the
189
+ next cycle separately:
190
+
191
+ ~~~~ sh
192
+ sacho next 1.3.0
193
+ ~~~~
194
+
195
+ Pass `--next 1.3.0` to `sacho release` only when the release commit should also
196
+ open the next cycle and retain its empty materialized region.
150
197
 
151
198
  After committing a release, print its frozen Markdown section with `show`:
152
199
 
@@ -225,3 +272,13 @@ is the same insistence this tool makes against generating changelogs from
225
272
  commit messages after the fact.
226
273
 
227
274
  [1]: https://en.wikipedia.org/wiki/Veritable_Records_of_the_Joseon_Dynasty#Compilation_process
275
+
276
+
277
+ License
278
+ -------
279
+
280
+ Copyright (C) 2026 Hong Minhee.
281
+
282
+ Sacho is free software licensed under the GNU General Public License version 3
283
+ only. It comes with no warranty, to the extent permitted by law. See
284
+ [*LICENSE*](./LICENSE) for the full terms.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sacho/sacho-aarch64-unknown-linux-musl",
3
- "version": "0.1.0-dev.11+f8249e8",
3
+ "version": "0.1.0-dev.13+e6331b9",
4
4
  "description": "The Sacho binary for aarch64-unknown-linux-musl",
5
5
  "license": "GPL-3.0-only",
6
6
  "author": "Hong Minhee <hong@minhee.org>",
package/sacho CHANGED
Binary file