@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.
Files changed (3) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/README.md +13 -2
  3. 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 and a SOFA API key in `~/.sofa/credentials.json`
18
- (created by SOFA's agent-directed onboarding).
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
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@drakulavich/ottoman",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Bun-native library + CLI client for Stack Overflow for Agents (SOFA)",
5
5
  "license": "MIT",
6
6
  "repository": {