Mario Zechner
c53b22db43
Add /settings command with unified settings menu
...
- Add SettingsList component to tui package with support for:
- Inline value cycling (Enter/Space toggles)
- Submenus for complex selections
- Selection preservation when returning from submenu
- Add /settings slash command consolidating:
- Auto-compact (toggle)
- Show images (toggle)
- Queue mode (cycle)
- Hide thinking (toggle)
- Collapse changelog (toggle)
- Thinking level (submenu)
- Theme (submenu with preview)
- Update AGENTS.md to clarify no inline imports rule
Fixes #310
2025-12-25 15:35:06 +01:00
Mario Zechner
58c02ce02b
Add [Unreleased] section to changelogs
2025-12-25 04:17:41 +01:00
Mario Zechner
b48a0c9328
Release v0.29.0
2025-12-25 04:16:42 +01:00
Mario Zechner
454ea1d36a
Rename /clear to /new, update hook events to before_new/new
...
Closes #305 - took direct rename approach instead of alias system
Thanks @mitsuhiko for the nudge!
2025-12-25 04:15:10 +01:00
Mario Zechner
fa716246ea
Release v0.28.0
2025-12-25 03:57:41 +01:00
Mario Zechner
1059d39d54
Add removeRuntimeApiKey to AuthStorage
2025-12-25 03:57:20 +01:00
Mario Zechner
b5b2ed65d4
Update changelogs for #296
2025-12-25 03:52:46 +01:00
Mario Zechner
54018b6cc0
Refactor OAuth/API key handling: AuthStorage and ModelRegistry
...
- Add AuthStorage class for credential storage (auth.json)
- Add ModelRegistry class for model management with API key resolution
- Add discoverAuthStorage() and discoverModels() discovery functions
- Add migration from legacy oauth.json and settings.json apiKeys to auth.json
- Remove configureOAuthStorage, defaultGetApiKey, findModel, discoverAvailableModels
- Remove apiKeys from Settings type and SettingsManager methods
- Rename getOAuthPath to getAuthPath
- Update SDK, examples, docs, tests, and mom package
Fixes #296
2025-12-25 03:48:36 +01:00
Mario Zechner
bf022d2581
WIP: Add auth-storage.ts for credential management
...
- AuthStorage class for reading/writing auth.json
- Supports both api_key and oauth credential types
- getApiKey() priority: auth.json api_key > auth.json oauth > env var
2025-12-25 01:23:45 +01:00
Mario Zechner
1c31d91c83
WIP: Rename model-config.ts to models-json.ts
...
- loadCustomModels now takes file path instead of agentDir
2025-12-25 01:15:17 +01:00
Mario Zechner
030788140a
WIP: Remove global state from pi-ai OAuth/API key handling
...
- Remove setApiKey, resolveApiKey, and global apiKeys Map from stream.ts
- Rename getApiKey to getApiKeyFromEnv (only checks env vars)
- Remove OAuth storage layer (storage.ts deleted)
- OAuth login/refresh functions now return credentials instead of saving
- getOAuthApiKey/refreshOAuthToken now take credentials as params
- Add test/oauth.ts helper for ai package tests
- Simplify root npm run check (single biome + tsgo pass)
- Remove redundant check scripts from most packages
- Add web-ui and coding-agent examples to biome/tsgo includes
coding-agent still has compile errors - needs refactoring for new API
2025-12-25 01:01:03 +01:00
Mario Zechner
385e7aff62
Add changelog entry for #304
2025-12-24 22:47:42 +01:00
Armin Ronacher
0c4d60f8c8
Skip over exact duplicate skills
2025-12-24 22:45:19 +01:00
Mario Zechner
61cd977926
Add empty Unreleased section
2025-12-24 21:26:15 +01:00
Mario Zechner
8fdd77b652
Release v0.27.9
2025-12-24 21:25:20 +01:00
Mario Zechner
ac5f4a77cc
Fix model selector not showing models with settings.json API keys
...
Fixes #295
2025-12-24 21:23:44 +01:00
Mario Zechner
a96b9201f9
Add empty Unreleased section
2025-12-24 20:53:23 +01:00
Mario Zechner
a965b6f160
Release v0.27.8 - OAuth takes priority over settings.json API keys
2025-12-24 20:52:22 +01:00
Mario Zechner
60768b90f3
Add [Unreleased] section for next cycle
2025-12-24 18:31:13 +01:00
Mario Zechner
89630b0d44
Release v0.27.7
2025-12-24 18:30:53 +01:00
Mario Zechner
2b22c3ce75
Add [Unreleased] section to changelog
2025-12-24 14:00:04 +01:00
Mario Zechner
3eb460ee50
Release v0.27.6
2025-12-24 13:59:09 +01:00
Mario Zechner
43add86ebf
Remove duplicate Custom Compaction example, reference main docs
2025-12-24 13:56:00 +01:00
Mario Zechner
705ba5d4f2
Improve compaction hooks: add signal, no timeout, SessionManager cleanup, docs
2025-12-24 13:54:05 +01:00
Mario Zechner
a2664ba38a
Use clearer abbreviations in compaction diagrams
2025-12-24 12:59:45 +01:00
Mario Zechner
3c5f4920c0
Improve compaction diagrams with legend and realistic message types
2025-12-24 12:58:00 +01:00
Mario Zechner
27250c860b
Add reference to compaction.ts source file
2025-12-24 12:55:47 +01:00
Mario Zechner
35a40b2197
Clarify that cut point is always user/assistant/bash, never tool result
2025-12-24 12:55:15 +01:00
Mario Zechner
5f41a384cc
Add split turn diagram to compaction docs
2025-12-24 12:53:23 +01:00
Mario Zechner
699702e366
Clarify keepRecentTokens is configurable
2025-12-24 12:51:41 +01:00
Mario Zechner
51aa1339ef
Add LLM context diagram to compaction docs
2025-12-24 12:49:45 +01:00
Mario Zechner
ea3ab718ea
Fix compaction ASCII diagram to show append-only behavior
2025-12-24 12:49:09 +01:00
Mario Zechner
ea16af8b72
Add ASCII diagram to compaction docs
2025-12-24 12:48:16 +01:00
Mario Zechner
403faafdbe
Add previousSummary to before_compact hook event
2025-12-24 12:47:12 +01:00
Mario Zechner
97bbd7a642
Clarify messagesToSummarize starts after last compaction
2025-12-24 12:44:05 +01:00
Mario Zechner
ee0befdfe1
Improve custom compaction docs in hooks.md
2025-12-24 12:43:04 +01:00
Mario Zechner
d9a542763a
Improve before_compact hook: add messagesToKeep, replace apiKey with resolveApiKey
2025-12-24 12:41:22 +01:00
Mario Zechner
e4283294c8
Update full-compaction example to use resolveApiKey
2025-12-24 12:30:00 +01:00
Mario Zechner
43a5447a80
Add resolveApiKey to before_compact hook event
2025-12-24 12:28:51 +01:00
Mario Zechner
5aa53ded11
Add full-compaction hook example
2025-12-24 12:25:36 +01:00
Mario Zechner
bf313d2713
Release v0.27.5
2025-12-24 12:18:51 +01:00
Mario Zechner
31dc58d43b
Add changelog entry for Ghostty tmux fix
2025-12-24 12:17:31 +01:00
Mario Zechner
9851ee3bdb
Add syntax highlighting to HTML export using highlight.js
2025-12-24 12:13:56 +01:00
scutifer
914898c58f
chore: update changelog.md to add the latest commit
2025-12-24 12:13:56 +01:00
scutifer
531bb91337
feat: Improve HTML export with markdown rendering and theme support
...
- Render markdown server-side using marked (tables, headings, code blocks, etc.)
- Honor user's chosen theme (light/dark) with appropriate color defaults
- Add image rendering for user messages
- Style code blocks with TUI-like ```language markers
2025-12-24 12:13:15 +01:00
Nico Bailon
1e1a92ea47
Add before_compact hook event ( closes #281 ) ( #285 )
...
* Add before_compact hook event (closes #281 )
* Add compact hook event and documentation
- Add compact event that fires after compaction completes
- Update hooks.md with lifecycle diagram, field docs, and example
- Add CHANGELOG entry
- Add comprehensive test coverage (10 tests) for before_compact and compact events
- Tests cover: event emission, cancellation, custom entry, error handling, multiple hooks
2025-12-24 11:26:29 +01:00
Mario Zechner
20b24cf5a4
Fix symlinked skill directories not being discovered
...
Release v0.27.4
2025-12-24 03:32:54 +01:00
Mario Zechner
f8619c1564
Release v0.27.3
2025-12-24 02:46:23 +01:00
Mario Zechner
81b10f2fa0
List all provider keys in README settings example
2025-12-24 02:42:41 +01:00
Mario Zechner
541758fbe0
Use injected resolveApiKey in AgentSession for settings.json support
2025-12-24 02:35:42 +01:00