by panxunying
AI Coding 福利站导航:免费白嫖 Claude Code / Codex 的中转站与公益站合集,含额度、模型、价格自动更新与一键配置脚本
# Add to your Claude Code skills
git clone https://github.com/panxunying/ai-coding-welfareGuides for using api integration skills like ai-coding-welfare.
ai-coding-welfare is an open-source api integration skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by panxunying. AI Coding 福利站导航:免费白嫖 Claude Code / Codex 的中转站与公益站合集,含额度、模型、价格自动更新与一键配置脚本. It has 103 GitHub stars.
ai-coding-welfare's catalog security scan is still queued. You can run an instant dependency and prompt-injection check now with the "Scan for vulnerabilities" button above.
Clone the repository with "git clone https://github.com/panxunying/ai-coding-welfare" and add it to your Claude Code skills directory (see the Installation section above).
ai-coding-welfare is primarily written in JavaScript. It is open-source under panxunying on GitHub, so you can review or fork the full source.
Yes. SkillsLLM lists many other API Integration skills you can browse and compare side by side. Open the API Integration category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh ai-coding-welfare against similar tools.
No comments yet. Be the first to share your thoughts!
Top skills in this category by stars
Unlocks once the catalog security scan passes (runs nightly).
⚠️ Third-Party Software Notice
This skill is third-party open-source software developed and hosted independently on GitHub. SkillsLLM is an informational directory and does not control or maintain the underlying repository.
Any security checks, ratings, or warnings displayed by SkillsLLM are automated and limited in scope. They do not constitute a security certification or guarantee that the software is safe, error-free, or free from malicious code, vulnerabilities, compromised dependencies, or prompt-injection risks.
Review the source code, permissions, dependencies, and configuration before installing or running any third-party skill. Use is at your own risk. To the maximum extent permitted by applicable law, SkillsLLM is not liable for losses arising from third-party software.
The deep catalog scan for this skill is still queued. Run an instant dependency check now instead.
| 站点 | 状态 | 首日可得 | 额度构成 | 之后每天 | 兼容协议 | 模型 | 注册 |
|---|---|---|---|---|---|---|---|
| AgentRouter 🔥 | 🟢 在线 | $175 | 注册 $100 + 本页邀请 $50 + 首签 $25 | $25/天 | Anthropic + OpenAI | 5 个可查 | 点此注册 → |
| JustDoWork | 🟢 在线 | ≈$92 | 注册 $70 + 首签 ≈$22 | ≈$22/天 | Anthropic + OpenAI | 需登录查看 | 点此注册 → |
| RawChat 公益站 | 🟢 在线 | $50 | 每日额度池 $50(每天重置,不累积) | $50/天(重置) | Codex CLI | Codex | 点此注册 → |
| Matrix | 🟢 在线 | 600 积分 | 本页邀请 600 积分 | — | OpenAI 兼容 | 需登录查看 | 点此注册 → |
| TaBiAI | 🟢 在线 | $120 | 注册 $100 + 本页邀请 $20 | 支持签到 | Anthropic + OpenAI | 4 个可查 | 点此注册 → |
| GoRouter | 🟢 在线 | $70 | 注册 $50 + 本页邀请 $20 | 支持签到 | Anthropic + OpenAI | 4 个可查 | 点此注册 → |
「首日可得」= 注册基础额度 + 本页邀请链接额度 + 当天能领的签到额度(每日重置额度池的站点按一天的池子算);模型、价格、在线状态由脚本抓取站点公开接口自动生成,最后更新:
2026-08-30 10:28 UTC。5 个按美元计价的站全注册一遍,第一天手上大约有 $507 额度可用(其中每日重置的额度池次日会回满,但不累积);Matrix 另发 600 积分,是站内积分、与美元没有公开换算,未计入这个合计。
只想快点用上 Claude Code? 三步:
# 交互式写好 Claude Code 的环境变量(macOS / Linux)
bash scripts/quickstart.sh
# Windows PowerShell
powershell -ExecutionPolicy Bypass -File scripts/quickstart.ps1
AI Coding 公益站 · 注册即送额度,签到每日续命
为什么值得注册
能拿多少额度
实时数据(自动抓取站点公开接口)
init-20260828-37a398bd镜像 / 备用入口
当前可用模型
| 模型 | 倍率 | 输入 / 1M tokens | 输出 / 1M tokens | 协议 |
|---|---|---|---|---|
claude-opus-4-8 |
4 | $8 | $40 | anthropic / openai |
claude-opus-5 |
4 | $8 | $40 | anthropic / openai |
deepseek-v4-flash |
1 | $2 | $6 | openai / anthropic |
glm-5.3 |
1.5 | $3 | $12 | anthropic / openai |
gpt-5.6-sol |
1.5 | $3 | $15 | openai |
倍率 1 ≈ $2 / 1M tokens,输出价 = 倍率 × 补全倍率 × $2;以站内实时价格为准。
注册要求
接入配置
# macOS / Linux
export ANTHROPIC_BASE_URL=https://agentrouter.org
export ANTHROPIC_AUTH_TOKEN=你在站点后台创建的 Key
export ANTHROPIC_MODEL=claude-opus-5
npm install -g @anthropic-ai/claude-code@latest && claude
# Windows PowerShell
$env:ANTHROPIC_BASE_URL = "https://agentrouter.org"
$env:ANTHROPIC_AUTH_TOKEN = "你在站点后台创建的 Key"
$env:ANTHROPIC_MODEL = "claude-opus-5"
claude
model = "gpt-5.6-sol"
model_provider = "agentrouter"
[model_providers.agentrouter]
name = "AgentRouter"
base_url = "https://agentrouter.org/v1"
env_key = "AGENTROUTER_API_KEY"
wire_api = "chat"
from openai import OpenAI
client = OpenAI(api_key="你的 Key", base_url="https://agentrouter.org/v1")
resp = client.chat.completions.create(model="gpt-5.6-sol", messages=[{"role": "user", "content": "ping"}])
print(resp.choices[0].message.content)
通用客户端只需填两项:Base URL = https://agentrouter.org/v1,API Key = 站点后台创建的 Key。
curl -s https://agentrouter.org/v1/chat/completions \
-H "Authorization: Bearer $KEY" -H "Content-Type: application/json" \
-d '{"model":"gpt-5.6-sol","messages":[{"role":"user","content":"只回复 OK"}]}'
如何继续拿额度
⚠️ 使用前必读
官方渠道
2026-07-28 📢 备用域名正式上线 为进一步提升服务可用性,本站现已推出备用域名:🔗 https://ps.air-outer.com 访问不了原域名的中国大陆用户可使用此域名,备用域名支持 API 接口调用 与 官网访问,与原域名功能完全一致。 原域名 https://agentrouter.org 可继续使用。2026-07-16 🎁 官方社区平台汇总 欢迎加入或关注以下官方渠道,获取最新动态与支持: 📱 QQ 群 · 1群:1054950616 · 2群:1091388133 · 3群:700583832 💬 Discord https://discord.gg/SXEhNMXsn 🐦 X(Twitter) https://x.com/AgentRouter_02026-06-30 📢 不当使用行为封禁说明 为维护服务公平,平台禁止以下不当行为: · 批量注册/获取额度 · 自动化刷量套利 · 转售、共享账号及额度 · 虚假邀请欺诈 · 恶意绕过限制、干扰服务 违规账号将封禁,名单见 Discord 🚫blocked-history 频道。 申诉请联系:agent_router_org@163.comNew API 中转站 · GitHub 一键登录,支持签到与绘图
为什么值得注册
能拿多少额度
实时数据(自动抓取站点公开接口)
v1.0.0-rc.23该站模型清单需登录后台查看,注册后在「模型价格」页确认。
注册要求
接入配置
# macOS / Linux
export ANTHROPIC_BASE_URL=https://api.justwoker.icu
export ANTHROPIC_AUTH_TOKEN=你在站点后台创建的 Key
export ANTHROPIC_MODEL=<登录后台查看可用模型名>
npm install -g @anthropic-ai/claude-code@latest && claude
# Windows PowerShell
$env:ANTHROPIC_BASE_URL = "https://api.justwoker.icu"
$env:ANTHROPIC_AUTH_TOKEN = "你在站点后台创建的 Key"
$env:ANTHROPIC_MODEL = "<登录后台查看可用模型名>"
claude
model = "<登录后台查看可用模型名>"
model_provider = "justdowork"
[model_providers.justdowork]
name = "JustDoWork"
base_url = "https://api.justwoker.icu/v1"
env_key = "JUSTDOWORK_API_KEY"
wire_api = "chat"
from openai import OpenAI
client = OpenAI(api_key="你的 Key", base_url="https://api.justwoker.icu/v1")
resp = client.chat.completions.create(model="<登录后台查看可用模型名>", messages=[{"role": "user", "content": "ping"}])
print(resp.choices[0].message.content)
通用客户端只需填两项:Base URL = https://api.justwoker.icu/v1,API Key = 站点后台创建的 Key。
curl -s https://api.justwoker.icu/v1/chat/completions \
-H "Authorization: Bearer $KEY" -H "Content-Type: application/json" \
-d '{"model":"<登录后台查看可用模型名>","messages":[{"role":"user","content":"只回复 OK"}]}'
如何继续拿额度
⚠️ 使用前必读
Codex 公益站 · 每日 $50 额度池,0 点自动重置
为什么值得注册
能拿多少额度
实时数据(自动抓取站点公开接口)
2026-08-30 10:21 UTC 的成功快照1.0.0.0该站走 Codex 官方客户端 + 上游号池,不单独公示模型清单与价格,用量直接从每日 $50 的额度池里扣。
注册要求
接入配置
Base URL 与 API Key 登录后才由后台下发,本页不做猜测;控制台「使用教程」里选 Cod