mirror of
https://github.com/AgentSeal/codeburn.git
synced 2026-08-13 02:25:04 +00:00
fix(warp): address PR review feedback
- remove unscoped README node/better-sqlite3 changes - drop bare auto aliases to avoid collisions - document output-token estimation tradeoff Co-Authored-By: Oz <oz-agent@warp.dev>
This commit is contained in:
parent
3c37936b88
commit
4dfbf00d8b
3 changed files with 5 additions and 5 deletions
|
|
@ -8,7 +8,7 @@
|
|||
<a href="https://www.npmjs.com/package/codeburn"><img src="https://img.shields.io/npm/v/codeburn.svg" alt="npm version" /></a>
|
||||
<a href="https://www.npmjs.com/package/codeburn"><img src="https://img.shields.io/npm/dt/codeburn.svg" alt="total downloads" /></a>
|
||||
<a href="https://github.com/getagentseal/codeburn/blob/main/LICENSE"><img src="https://img.shields.io/npm/l/codeburn.svg" alt="license" /></a>
|
||||
<a href="https://github.com/getagentseal/codeburn"><img src="https://img.shields.io/badge/node-%3E%3D22-brightgreen.svg" alt="node version" /></a>
|
||||
<a href="https://github.com/getagentseal/codeburn"><img src="https://img.shields.io/badge/node-%3E%3D20-brightgreen.svg" alt="node version" /></a>
|
||||
<a href="https://discord.gg/pJ2DMWvtAx"><img src="https://img.shields.io/badge/discord-join-5865F2?logo=discord&logoColor=white" alt="Discord" /></a>
|
||||
<a href="https://github.com/sponsors/iamtoruk"><img src="https://img.shields.io/badge/sponsor-♥-ea4aaa?logo=github" alt="Sponsor" /></a>
|
||||
</p>
|
||||
|
|
@ -38,9 +38,9 @@ Everything runs locally. No wrapper, no proxy, no API keys. CodeBurn reads sessi
|
|||
|
||||
## Requirements
|
||||
|
||||
- Node.js 22+
|
||||
- Node.js 20+
|
||||
- At least one supported AI coding tool with session data on disk
|
||||
- SQLite-backed providers (Cursor, OpenCode, Goose, Crush, Warp) require Node's built-in `node:sqlite` module
|
||||
- For Cursor and OpenCode support, `better-sqlite3` is installed automatically as an optional dependency
|
||||
|
||||
## Install
|
||||
|
||||
|
|
|
|||
|
|
@ -173,8 +173,6 @@ const BUILTIN_ALIASES: Record<string, string> = {
|
|||
'openclaw-auto': 'claude-sonnet-4-5',
|
||||
'warp-auto-efficient': 'gpt-5.3-codex',
|
||||
'warp-auto-powerful': 'claude-opus-4-6',
|
||||
'auto-efficient': 'gpt-5.3-codex',
|
||||
'auto-powerful': 'claude-opus-4-6',
|
||||
'GPT-5.3 Codex (low reasoning)': 'gpt-5.3-codex',
|
||||
'GPT-5.3 Codex (medium reasoning)': 'gpt-5.3-codex',
|
||||
'GPT-5.3 Codex (high reasoning)': 'gpt-5.3-codex',
|
||||
|
|
|
|||
|
|
@ -399,6 +399,8 @@ function createParser(source: SessionSource, seenKeys: Set<string>): SessionPars
|
|||
provider: 'warp',
|
||||
model,
|
||||
inputTokens,
|
||||
// Warp exposes only conversation-level usage totals in these tables,
|
||||
// so we cannot reliably split per-exchange input vs output tokens.
|
||||
outputTokens: 0,
|
||||
cacheCreationInputTokens: 0,
|
||||
cacheReadInputTokens: 0,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue