altimate-code 0.5.5 → 0.5.7

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 (2) hide show
  1. package/CHANGELOG.md +48 -0
  2. package/package.json +13 -13
package/CHANGELOG.md CHANGED
@@ -5,6 +5,54 @@ 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.5.7] - 2026-03-22
9
+
10
+ ### Added
11
+
12
+ - **Impact analysis tool** — analyze downstream blast radius of dbt model/column changes across the DAG with severity classification (SAFE/LOW/MEDIUM/HIGH) and actionable recommendations (#350)
13
+ - **Training import tool** — bulk import training entries from markdown style guides, glossaries, and playbooks with dry-run preview and capacity management (#350)
14
+ - **CI check command** — `/ci-check` template for pre-merge SQL validation that analyzes changed files, checks dbt integrity, and generates CI-friendly reports (#350)
15
+ - **`--max-turns` budget limit** — CLI option to cap agent steps for CI/enterprise governance (#350)
16
+ - **LM Studio provider** — local Qwen model support via LM Studio (#340)
17
+ - **Improved onboarding** — first-time user hints on home screen, beginner-focused tips, practical quickstart examples (#350)
18
+ - **Expanded `/discover`** — detects additional cloud warehouse credentials (Snowflake, BigQuery, PostgreSQL, Databricks, Redshift) (#350)
19
+ - **Automated test discovery** — `/test-discovery` command for hourly test generation with critic validation (#364, #365, #366, #367)
20
+
21
+ ### Fixed
22
+
23
+ - Yolo mode now respects explicit deny rules from session config instead of auto-approving everything (#350)
24
+ - Training limits increased from 20→50 entries per kind and 16KB→48KB budget for enterprise teams (#350)
25
+
26
+ ### Testing
27
+
28
+ - E2E tests for trace viewer with adversarial cases (#353)
29
+ - Bash tool PATH injection tests (#366)
30
+ - `fn()` wrapper and `skillSource` trust classification tests (#367)
31
+ - `AsyncQueue`/`work()` utility and `State.invalidate` coverage (#364)
32
+
33
+ ## [0.5.6] - 2026-03-22
34
+
35
+ ### Added
36
+
37
+ - **Skill CLI command** — new top-level `altimate-code skill` with `list`, `create`, `test`, `show`, `install`, `remove` subcommands for managing AI agent skills and paired CLI tools (#342)
38
+ - **`.opencode/tools/` auto-discovery** — executables in `.opencode/tools/` (project) and `~/.config/altimate-code/tools/` (global) are automatically prepended to PATH in BashTool and PTY sessions (#342)
39
+ - **TUI skill management** — `/skills` dialog with domain-grouped skill browser, `ctrl+a` action picker (show, edit, test, remove), `ctrl+n` create, `ctrl+i` install from GitHub (#342)
40
+ - **Skill install from GitHub** — `altimate-code skill install owner/repo` clones and installs skills; supports GitHub web URLs, shorthand, local paths, and `--global` flag (#342)
41
+ - **Skill cache invalidation** — `State.invalidate()` and `Skill.invalidate()` with `GET /skill?reload=true` endpoint for cross-thread cache clearing (#342)
42
+ - **Snowflake Cortex AI provider** — use Snowflake Cortex as an AI provider for LLM completions (#349)
43
+ - **Telemetry for skill operations** — `skill_created`, `skill_installed`, `skill_removed` events (#342)
44
+ - **E2E smoke tests** — committed tests for skill lifecycle, git-tracked protection, symlink safety, GitHub URL normalization (#363)
45
+
46
+ ### Fixed
47
+
48
+ - Symlink traversal protection during skill install — uses `fs.lstat` to skip symlinks and prevent file disclosure from malicious repos (#342)
49
+ - Git-tracked skills cannot be removed via `skill remove` or TUI — prevents accidental deletion of repo-managed skills (#342)
50
+ - GitHub web URLs (e.g., `https://github.com/owner/repo/tree/main/path`) correctly normalized to clonable repo URLs (#342)
51
+ - `.git` suffix stripped from install source to prevent double-append (#342)
52
+ - TUI skill operations use `sdk.directory` + `gitRoot()` instead of `Instance`/`Global` which only exist in the worker thread (#342)
53
+ - TUI install uses async `Bun.spawn` instead of blocking `Bun.spawnSync` to keep UI responsive (#342)
54
+ - Missing `altimate_change` markers in `dialog-skill.tsx` and `skill.ts` (#341, #344)
55
+
8
56
  ## [0.5.5] - 2026-03-20
9
57
 
10
58
  ### Added
package/package.json CHANGED
@@ -14,24 +14,24 @@
14
14
  "scripts": {
15
15
  "postinstall": "bun ./postinstall.mjs || node ./postinstall.mjs"
16
16
  },
17
- "version": "0.5.5",
17
+ "version": "0.5.7",
18
18
  "license": "MIT",
19
19
  "dependencies": {
20
20
  "@altimateai/altimate-core": "^0.2.5"
21
21
  },
22
22
  "optionalDependencies": {
23
- "@altimateai/altimate-code-linux-x64": "0.5.5",
24
- "@altimateai/altimate-code-windows-arm64": "0.5.5",
25
- "@altimateai/altimate-code-linux-arm64-musl": "0.5.5",
26
- "@altimateai/altimate-code-darwin-x64": "0.5.5",
27
- "@altimateai/altimate-code-windows-x64": "0.5.5",
28
- "@altimateai/altimate-code-linux-x64-musl": "0.5.5",
29
- "@altimateai/altimate-code-darwin-x64-baseline": "0.5.5",
30
- "@altimateai/altimate-code-linux-x64-baseline-musl": "0.5.5",
31
- "@altimateai/altimate-code-linux-x64-baseline": "0.5.5",
32
- "@altimateai/altimate-code-linux-arm64": "0.5.5",
33
- "@altimateai/altimate-code-darwin-arm64": "0.5.5",
34
- "@altimateai/altimate-code-windows-x64-baseline": "0.5.5"
23
+ "@altimateai/altimate-code-linux-x64": "0.5.7",
24
+ "@altimateai/altimate-code-windows-arm64": "0.5.7",
25
+ "@altimateai/altimate-code-linux-arm64-musl": "0.5.7",
26
+ "@altimateai/altimate-code-darwin-x64": "0.5.7",
27
+ "@altimateai/altimate-code-windows-x64": "0.5.7",
28
+ "@altimateai/altimate-code-linux-x64-musl": "0.5.7",
29
+ "@altimateai/altimate-code-darwin-x64-baseline": "0.5.7",
30
+ "@altimateai/altimate-code-linux-x64-baseline-musl": "0.5.7",
31
+ "@altimateai/altimate-code-linux-x64-baseline": "0.5.7",
32
+ "@altimateai/altimate-code-linux-arm64": "0.5.7",
33
+ "@altimateai/altimate-code-darwin-arm64": "0.5.7",
34
+ "@altimateai/altimate-code-windows-x64-baseline": "0.5.7"
35
35
  },
36
36
  "peerDependencies": {
37
37
  "pg": ">=8",