free-coding-models 0.2.10 → 0.2.11

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
@@ -2,6 +2,13 @@
2
2
 
3
3
  ---
4
4
 
5
+ ## 0.2.11
6
+
7
+ ### Added
8
+ - **Pi Coding Agent support**: Enabled Pi (pi.dev) as a launchable mode in the Z key cycle. Select a model and press Enter to configure Pi's config file and spawn the PI coding agent CLI with the chosen model and API endpoint.
9
+
10
+ ---
11
+
5
12
  ## 0.2.10
6
13
 
7
14
  ### Changed
@@ -74,7 +74,7 @@
74
74
  * - --opencode: OpenCode CLI mode (launch CLI with selected model)
75
75
  * - --opencode-desktop: OpenCode Desktop mode (set model & open Desktop app)
76
76
  * - --openclaw: OpenClaw mode (set selected model as default in OpenClaw)
77
- * - --crush / --goose: launch the currently selected model in the supported external CLI
77
+ * - --crush / --goose / --pi: launch the currently selected model in the supported external CLI
78
78
  * - --best: Show only top-tier models (A+, S, S+)
79
79
  * - --fiable: Analyze 10s and output the most reliable model
80
80
  * - --json: Output results as JSON (for scripting/automation)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "free-coding-models",
3
- "version": "0.2.10",
3
+ "version": "0.2.11",
4
4
  "description": "Find the fastest coding LLM models in seconds — ping free models from multiple providers, pick the best one for OpenCode, Cursor, or any AI coding assistant.",
5
5
  "keywords": [
6
6
  "nvidia",
@@ -28,6 +28,7 @@ export const TOOL_METADATA = {
28
28
  openclaw: { label: 'OpenClaw', emoji: '🦞', flag: '--openclaw' },
29
29
  crush: { label: 'Crush', emoji: '💘', flag: '--crush' },
30
30
  goose: { label: 'Goose', emoji: '🪿', flag: '--goose' },
31
+ pi: { label: 'Pi', emoji: 'π', flag: '--pi' },
31
32
  // aider: { label: 'Aider', emoji: '🛠', flag: '--aider' },
32
33
  // 'claude-code': { label: 'Claude Code', emoji: '🧠', flag: '--claude-code' },
33
34
  // codex: { label: 'Codex CLI', emoji: '⌘', flag: '--codex' },
@@ -35,7 +36,6 @@ export const TOOL_METADATA = {
35
36
  // qwen: { label: 'Qwen Code', emoji: '🌊', flag: '--qwen' },
36
37
  // openhands: { label: 'OpenHands', emoji: '🤲', flag: '--openhands' },
37
38
  // amp: { label: 'Amp', emoji: '⚡', flag: '--amp' },
38
- // pi: { label: 'Pi', emoji: 'π', flag: '--pi' },
39
39
  }
40
40
 
41
41
  export const TOOL_MODE_ORDER = [
@@ -44,6 +44,7 @@ export const TOOL_MODE_ORDER = [
44
44
  'openclaw',
45
45
  'crush',
46
46
  'goose',
47
+ 'pi',
47
48
  // 'aider',
48
49
  // 'claude-code',
49
50
  // 'codex',
@@ -51,7 +52,6 @@ export const TOOL_MODE_ORDER = [
51
52
  // 'qwen',
52
53
  // 'openhands',
53
54
  // 'amp',
54
- // 'pi',
55
55
  ]
56
56
 
57
57
  export function getToolMeta(mode) {