beecork 2.7.0 → 2.7.2

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/dist/index.js +8 -5
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -34,15 +34,18 @@ function canonical(p) {
34
34
  var API_KEY = process.env.OPENROUTER_API_KEY ?? "";
35
35
  var RECOMMENDED_MODELS = [
36
36
  { slug: "deepseek/deepseek-v4-flash", price: "$0.09", note: "cheap + fast daily driver (default)" },
37
+ { slug: "qwen/qwen3-coder-next", price: "$0.11", note: "cheap coding specialist (Qwen)" },
38
+ { slug: "qwen/qwen3.6-flash", price: "$0.19", note: "fast Qwen \u2014 great value (thinking)" },
37
39
  { slug: "openai/gpt-5.4-nano", price: "$0.20", note: "cheap OpenAI" },
38
40
  { slug: "google/gemini-3.1-flash-lite", price: "$0.25", note: "cheap Google" },
39
- { slug: "z-ai/glm-4.7", price: "$0.40", note: "strong coder, great value" },
41
+ { slug: "qwen/qwen3.7-plus", price: "$0.32", note: "strong Qwen (thinking)" },
40
42
  { slug: "deepseek/deepseek-v4-pro", price: "$0.43", note: "stronger DeepSeek" },
41
- { slug: "z-ai/glm-5.2", price: "$0.95", note: "top agentic coder" },
43
+ { slug: "z-ai/glm-5", price: "$0.60", note: "strong coder, great value" },
44
+ { slug: "z-ai/glm-5.2", price: "$0.93", note: "top agentic coder" },
42
45
  { slug: "anthropic/claude-haiku-4.5", price: "$1.00", note: "fast Claude" },
43
- { slug: "x-ai/grok-4.3", price: "$1.25", note: "xAI Grok" },
44
46
  { slug: "google/gemini-3.5-flash", price: "$1.50", note: "capable Google" },
45
- { slug: "anthropic/claude-sonnet-4.6", price: "$3.00", note: "top quality (premium)" },
47
+ { slug: "anthropic/claude-sonnet-5", price: "$2.00", note: "top quality (premium)" },
48
+ { slug: "x-ai/grok-4.5", price: "$2.00", note: "xAI Grok (latest)" },
46
49
  { slug: "openai/gpt-5.5", price: "$5.00", note: "OpenAI flagship (premium)" }
47
50
  ];
48
51
  var num = (name, fallback) => {
@@ -2797,7 +2800,7 @@ async function summarize(old, signal) {
2797
2800
  messages: [
2798
2801
  {
2799
2802
  role: "system",
2800
- content: "You are compacting a long coding session to fit the context window. Summarize the transcript below into structured notes the assistant can continue from WITHOUT losing important context. Use exactly these headings:\n- Goal: what the user ultimately wants (and any explicit instructions/preferences).\n- Done: key steps taken, decisions made, and files created or edited \u2014 keep the essential code/exact changes.\n- Facts: important things discovered about the codebase (structure, conventions, file contents that matter).\n- Errors & fixes: problems hit and how they were resolved, plus any user corrections.\n- Pending: what still remains to do.\nBe concise but specific \u2014 keep names, signatures, and paths; omit chit-chat."
2803
+ content: "You are compacting a long coding session to fit the context window. Summarize the transcript below into structured notes the assistant can continue from WITHOUT losing important context. Use exactly these headings:\n- Rules: any standing rule or constraint the user set for the whole session (e.g. 'always \u2026', 'never \u2026', a required format/naming/convention). Copy each one VERBATIM \u2014 they are STILL BINDING and MUST be applied to everything you do next. Write 'none' only if there truly are none.\n- Goal: what the user ultimately wants (and any other preferences).\n- Done: key steps taken, decisions made, and files created or edited \u2014 keep the essential code/exact changes.\n- Facts: important things discovered about the codebase (structure, conventions, file contents that matter).\n- Errors & fixes: problems hit and how they were resolved, plus any user corrections.\n- Pending: what still remains to do.\nBe concise but specific \u2014 keep names, signatures, and paths; omit chit-chat."
2801
2804
  },
2802
2805
  { role: "user", content: transcript(old) }
2803
2806
  ]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "beecork",
3
- "version": "2.7.0",
3
+ "version": "2.7.2",
4
4
  "description": "beecork — a from-scratch CLI coding agent: multi-model (OpenRouter), BYOK, path-confined tools, built part by part.",
5
5
  "type": "module",
6
6
  "bin": {