@altimateai/altimate-code 0.3.0 → 0.4.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/CHANGELOG.md CHANGED
@@ -5,6 +5,42 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [0.4.0] - 2026-03-15
9
+
10
+ ### Added
11
+
12
+ - Data-viz skill for data storytelling and visualizations (#170)
13
+ - AI Teammate training system with learn-by-example patterns (#148)
14
+
15
+ ### Fixed
16
+
17
+ - Sidebar shows "OpenCode" instead of "Altimate Code" after upstream merge (#168)
18
+ - Prevent upstream tags from polluting origin (#165)
19
+ - Show welcome box on first CLI run, not during postinstall (#163)
20
+
21
+ ### Changed
22
+
23
+ - Engine version bumped to 0.4.0
24
+
25
+ ## [0.3.1] - 2026-03-15
26
+
27
+ ### Fixed
28
+
29
+ - Database migration crash when upgrading from v0.2.x — backfill NULL migration names for Drizzle beta.16 compatibility (#161)
30
+ - Install banner not visible during `npm install` — moved output from stdout to stderr (#161)
31
+ - Verbose changelog dump removed from CLI startup (#161)
32
+ - `altimate upgrade` detection broken — `method()` and `latest()` referenced upstream `opencode-ai` package names instead of `@altimateai/altimate-code` (#161)
33
+ - Brew formula detection and upgrade referencing `opencode` instead of `altimate-code` (#161)
34
+ - Homebrew tap updated to v0.3.0 (was stuck at 0.1.4 due to expired `HOMEBREW_TAP_TOKEN`) (#161)
35
+ - `.opencode/memory/` references in docs updated to `.altimate-code/memory/` (#161)
36
+ - Stale `@opencode-ai/plugin` reference in CONTRIBUTING.md (#161)
37
+
38
+ ### Changed
39
+
40
+ - CI now uses path-based change detection to skip unaffected jobs (saves ~100s on non-TS changes) (#161)
41
+ - Release workflow gated on test job passing (#157)
42
+ - Upstream merge restricted to published GitHub releases only (#150)
43
+
8
44
  ## [0.3.0] - 2026-03-15
9
45
 
10
46
  ### Added
package/package.json CHANGED
@@ -7,20 +7,20 @@
7
7
  "scripts": {
8
8
  "postinstall": "bun ./postinstall.mjs || node ./postinstall.mjs"
9
9
  },
10
- "version": "v0.3.0",
10
+ "version": "v0.4.0",
11
11
  "license": "MIT",
12
12
  "optionalDependencies": {
13
- "@altimateai/altimate-code-linux-x64": "v0.3.0",
14
- "@altimateai/altimate-code-windows-arm64": "v0.3.0",
15
- "@altimateai/altimate-code-linux-arm64-musl": "v0.3.0",
16
- "@altimateai/altimate-code-darwin-x64": "v0.3.0",
17
- "@altimateai/altimate-code-windows-x64": "v0.3.0",
18
- "@altimateai/altimate-code-linux-x64-musl": "v0.3.0",
19
- "@altimateai/altimate-code-darwin-x64-baseline": "v0.3.0",
20
- "@altimateai/altimate-code-linux-x64-baseline-musl": "v0.3.0",
21
- "@altimateai/altimate-code-linux-x64-baseline": "v0.3.0",
22
- "@altimateai/altimate-code-linux-arm64": "v0.3.0",
23
- "@altimateai/altimate-code-darwin-arm64": "v0.3.0",
24
- "@altimateai/altimate-code-windows-x64-baseline": "v0.3.0"
13
+ "@altimateai/altimate-code-linux-x64": "v0.4.0",
14
+ "@altimateai/altimate-code-windows-arm64": "v0.4.0",
15
+ "@altimateai/altimate-code-linux-arm64-musl": "v0.4.0",
16
+ "@altimateai/altimate-code-darwin-x64": "v0.4.0",
17
+ "@altimateai/altimate-code-windows-x64": "v0.4.0",
18
+ "@altimateai/altimate-code-linux-x64-musl": "v0.4.0",
19
+ "@altimateai/altimate-code-darwin-x64-baseline": "v0.4.0",
20
+ "@altimateai/altimate-code-linux-x64-baseline-musl": "v0.4.0",
21
+ "@altimateai/altimate-code-linux-x64-baseline": "v0.4.0",
22
+ "@altimateai/altimate-code-linux-arm64": "v0.4.0",
23
+ "@altimateai/altimate-code-darwin-arm64": "v0.4.0",
24
+ "@altimateai/altimate-code-windows-x64-baseline": "v0.4.0"
25
25
  }
26
26
  }
package/postinstall.mjs CHANGED
@@ -106,11 +106,13 @@ function printWelcome(version) {
106
106
  const empty = ` │ ${" ".repeat(contentWidth)} │`
107
107
  const row = (s) => ` │ ${pad(s)} │`
108
108
 
109
- console.log(top)
110
- console.log(empty)
111
- console.log(row(` ${v}`))
112
- for (const line of lines) console.log(row(line))
113
- console.log(bot)
109
+ // Use stderr — npm v7+ silences postinstall stdout
110
+ const out = (s) => process.stderr.write(s + "\n")
111
+ out(top)
112
+ out(empty)
113
+ out(row(` ${v}`))
114
+ for (const line of lines) out(row(line))
115
+ out(bot)
114
116
  }
115
117
 
116
118
  /**
@@ -141,11 +143,7 @@ async function main() {
141
143
  if (os.platform() === "win32") {
142
144
  // On Windows, the .exe is already included in the package and bin field points to it
143
145
  // No postinstall setup needed
144
- console.log("Windows detected: binary setup not needed (using packaged .exe)")
145
- if (version) {
146
- writeUpgradeMarker(version)
147
- printWelcome(version)
148
- }
146
+ if (version) writeUpgradeMarker(version)
149
147
  return
150
148
  }
151
149
 
@@ -160,10 +158,9 @@ async function main() {
160
158
  fs.copyFileSync(binaryPath, target)
161
159
  }
162
160
  fs.chmodSync(target, 0o755)
163
- if (version) {
164
- writeUpgradeMarker(version)
165
- printWelcome(version)
166
- }
161
+ // Write marker only — npm v7+ suppresses all postinstall output.
162
+ // The CLI picks up the marker and shows the welcome box on first run.
163
+ if (version) writeUpgradeMarker(version)
167
164
  } catch (error) {
168
165
  console.error("Failed to setup altimate-code binary:", error.message)
169
166
  process.exit(1)