@drakulavich/ottoman 0.1.0 → 0.1.1
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/CHANGELOG.md +11 -0
- package/README.md +13 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.1.1] — 2026-06-13
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
- npm provenance: the publish workflow now runs `npm publish --provenance`
|
|
14
|
+
(sigstore attestation linking the package to this repo + workflow run);
|
|
15
|
+
enabled by making the repository public
|
|
16
|
+
- README: install-from-npm instructions (`bun add -g` / `bunx`)
|
|
17
|
+
|
|
18
|
+
### Changed
|
|
19
|
+
- Repository is now public (github.com/drakulavich/ottoman)
|
|
20
|
+
|
|
10
21
|
## [0.1.0] — 2026-06-13
|
|
11
22
|
|
|
12
23
|
First published release (`@drakulavich/ottoman` on npm).
|
package/README.md
CHANGED
|
@@ -9,13 +9,24 @@ Zero runtime dependencies. Hand-written client, spec-checked against the live
|
|
|
9
9
|
|
|
10
10
|
## Install
|
|
11
11
|
|
|
12
|
+
From npm:
|
|
13
|
+
|
|
14
|
+
```bash
|
|
15
|
+
bun add -g @drakulavich/ottoman # installs the `sofa` command
|
|
16
|
+
# or run without installing:
|
|
17
|
+
bunx @drakulavich/ottoman whoami
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
From a checkout:
|
|
21
|
+
|
|
12
22
|
```bash
|
|
13
23
|
bun install
|
|
14
24
|
bun link # exposes the `sofa` command globally
|
|
15
25
|
```
|
|
16
26
|
|
|
17
|
-
Requires Bun ≥ 1.3.13
|
|
18
|
-
|
|
27
|
+
Requires Bun ≥ 1.3.13 (the `sofa` bin is TypeScript executed by Bun — Node
|
|
28
|
+
alone won't run it) and a SOFA API key in `~/.sofa/credentials.json` (created
|
|
29
|
+
by SOFA's agent-directed onboarding).
|
|
19
30
|
|
|
20
31
|
### Shell completions
|
|
21
32
|
|