free-coding-models 0.2.8 → 0.2.9

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,17 @@
2
2
 
3
3
  ---
4
4
 
5
+ ## 0.2.9
6
+
7
+ ### Fixed
8
+ - **Discord link**: Updated expired invite URL to `https://discord.gg/f2AjwV2AN` in README and TUI footer
9
+
10
+ ### Added
11
+ - **Discord link health-check workflow**: New GitHub Actions workflow (`check-discord-link.yml`) runs every 12 hours, validates the Discord invite via the Discord API, and auto-opens an issue labeled `discord-link` if the link becomes invalid
12
+ - **Pi provider metadata**: Added `pi` provider entry to `src/provider-metadata.js` with light blue color, pi.dev signup URL, and setup hint for `@mariozechner/pi-coding-agent` integration
13
+
14
+ ---
15
+
5
16
  ## 0.2.8
6
17
 
7
18
  ### Updated
package/README.md CHANGED
@@ -26,9 +26,11 @@
26
26
  </p>
27
27
 
28
28
  <p align="center">
29
- 💬 <a href="https://discord.gg/5MbTnDC3Md">Let's talk about the project on Discord</a>
29
+ 💬 <a href="https://discord.gg/f2AjwV2AN">Let's talk about the project on Discord</a>
30
30
  </p>
31
31
 
32
+ By Vanessa Depraute
33
+
32
34
  <p align="center">
33
35
 
34
36
  ```
@@ -1021,7 +1023,7 @@ We welcome contributions! Feel free to open issues, submit pull requests, or get
1021
1023
 
1022
1024
  For questions or issues, open a [GitHub issue](https://github.com/vava-nessa/free-coding-models/issues).
1023
1025
 
1024
- 💬 Let's talk about the project on Discord: https://discord.gg/5MbTnDC3Md
1026
+ 💬 Let's talk about the project on Discord: https://discord.gg/f2AjwV2AN
1025
1027
 
1026
1028
  ---
1027
1029
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "free-coding-models",
3
- "version": "0.2.8",
3
+ "version": "0.2.9",
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",
@@ -218,4 +218,11 @@ export const PROVIDER_METADATA = {
218
218
  signupHint: 'Register → Personal Information → Generate API Key (7-day expiry)',
219
219
  rateLimits: 'Free for individuals (no request limits)',
220
220
  },
221
+ pi: {
222
+ label: 'Pi (pi.dev)',
223
+ color: chalk.rgb(173, 216, 230), // light blue
224
+ signupUrl: 'https://pi.dev',
225
+ signupHint: 'Install @mariozechner/pi-coding-agent and set ANTHROPIC_API_KEY',
226
+ rateLimits: 'Depends on provider subscription (e.g., Anthropic, OpenAI)',
227
+ },
221
228
  }
@@ -661,9 +661,9 @@ export function renderTable(results, pendingPings, frame, cursor = null, sortCol
661
661
  chalk.rgb(255, 200, 100)('\x1b]8;;https://buymeacoffee.com/vavanessadev\x1b\\Buy me a coffee\x1b]8;;\x1b\\') +
662
662
  chalk.dim(' • ') +
663
663
  '💬 ' +
664
- chalk.rgb(200, 150, 255)('\x1b]8;;https://discord.gg/5MbTnDC3Md\x1b\\Discord\x1b]8;;\x1b\\') +
664
+ chalk.rgb(200, 150, 255)('\x1b]8;;https://discord.gg/f2AjwV2AN\x1b\\Discord\x1b]8;;\x1b\\') +
665
665
  chalk.dim(' → ') +
666
- chalk.rgb(200, 150, 255)('https://discord.gg/5MbTnDC3Md') +
666
+ chalk.rgb(200, 150, 255)('https://discord.gg/f2AjwV2AN') +
667
667
  chalk.dim(' • ') +
668
668
  chalk.dim('Ctrl+C Exit')
669
669
  )