wanshuiyin/Auto-claude-code-research-in-sleep
ARIS ⚔️ (Auto-Research-In-Sleep) — Lightweight Markdown-only skills for autonomous ML research: cross-model review loops, idea discovery, and experiment automation. No framework, no lock-in — works with Claude Code, Codex, OpenClaw, or any LLM agent.
View Origin LinkProduct Positioning & Context
Related Ecosystem & Alternatives
Discover adjacent products, open-source repositories, and developer tools sharing similar technical architecture.
Deep-Dive FAQs
What is wanshuiyin/Auto-claude-code-research-in-sleep?
Where did wanshuiyin/Auto-claude-code-research-in-sleep originate?
When was wanshuiyin/Auto-claude-code-research-in-sleep publicly launched?
How popular is wanshuiyin/Auto-claude-code-research-in-sleep?
Which technical categories define wanshuiyin/Auto-claude-code-research-in-sleep?
Are there active development issues for wanshuiyin/Auto-claude-code-research-in-sleep?
What are some commercial alternatives to wanshuiyin/Auto-claude-code-research-in-sleep?
How does the creator describe wanshuiyin/Auto-claude-code-research-in-sleep?
Active Developer Issues (GitHub)
Community Voice & Feedback
> The 'gpt-5.4-xhigh' model is not supported when using Codex with a ChatGPT account.
**原因**:ChatGPT Plus 订阅的 Codex 对可用模型有限制,部分高端模型(gpt-5.4)可能不在支持列表中。
**解决方案**:
1. **检查 Codex 支持的模型列表**:运行 `codex` 看可用模型
2. **如果 gpt-5.4 不可用**,可以在 skill 中手动指定较低的模型(如 `o3`)
3. **或者用 llm-chat MCP 替代**:通过 OpenAI API key 直连(不经 Codex),支持所有模型。详见 `mcp-servers/llm-chat/`,同时可用 `tools/convert_skills_to_llm_chat.py` 自动转换所有 skill
如果还有问题欢迎重新开 issue。
> > > > Error: {"type":"error","status":400,"error":{"type":"invalid_request_error","message":"The 'gpt-5.4-xhigh' model is not supported when using Codex with
> > > > a ChatGPT account."}}
> > >
> > >
> > > > Error: {"type":"error","status":400,"error":{"type":"invalid_request_error","message":"The 'gpt-4o' model is not supported when using Codex with a
> > > > ChatGPT account."}}
> > >
> > >
> > > 因为tz的问题吗?有大佬遇到过类似情况么。
> >
> >
> > 请问开了GPT plus 嘛~ 我今天晚上用还是好的诶
>
> 开了的大佬,网页版能正常用。直接问了claude,破案了😂
>
> > 配置确实是 model = "gpt-5.4"。
> > 问题出在我第一次调用时手动指定了 model: "gpt-5.4-xhigh"(带 -xhigh 后缀),这不是一个合法的模型ID,所以报错。后续又试了 o3、gpt-4o,同样不被 ChatGPT
> > 账户支持。
> > 最后成功的调用没有传 model 参数,于是 Codex 用了配置文件里的默认值 gpt-5.4,这才走通了。
> > 总结:你的配置没问题,是我的错——不该手动覆盖 model 参数,应该让它走默认配置。后续调用我会直接用默认的 gpt-5.4。
你的这个model = "gpt-5.4",是在哪里改的,我这个自动跳gpt5.2
> > > Error: {"type":"error","status":400,"error":{"type":"invalid_request_error","message":"The 'gpt-5.4-xhigh' model is not supported when using Codex with
> > > a ChatGPT account."}}
> >
> >
> > > Error: {"type":"error","status":400,"error":{"type":"invalid_request_error","message":"The 'gpt-4o' model is not supported when using Codex with a
> > > ChatGPT account."}}
> >
> >
> > 因为tz的问题吗?有大佬遇到过类似情况么。
>
> 请问开了GPT plus 嘛~ 我今天晚上用还是好的诶
开了的大佬,网页版能正常用。直接问了claude,破案了😂
> 配置确实是 model = "gpt-5.4"。
>
> 问题出在我第一次调用时手动指定了 model: "gpt-5.4-xhigh"(带 -xhigh 后缀),这不是一个合法的模型ID,所以报错。后续又试了 o3、gpt-4o,同样不被 ChatGPT
> 账户支持。
>
> 最后成功的调用没有传 model 参数,于是 Codex 用了配置文件里的默认值 gpt-5.4,这才走通了。
>
> 总结:你的配置没问题,是我的错——不该手动覆盖 model 参数,应该让它走默认配置。后续调用我会直接用默认的 gpt-5.4。
>
> > Error: {"type":"error","status":400,"error":{"type":"invalid_request_error","message":"The 'gpt-5.4-xhigh' model is not supported when using Codex with
> > a ChatGPT account."}}
>
> > Error: {"type":"error","status":400,"error":{"type":"invalid_request_error","message":"The 'gpt-4o' model is not supported when using Codex with a
> > ChatGPT account."}}
>
> 因为tz的问题吗?有大佬遇到过类似情况么。
请问开了GPT plus 嘛~ 我今天晚上用还是好的诶
> >
> >
> > 现在已经适配Cursor 和单独一个Codex Subagent review,欢迎体验~
>
> 出现代码问题时,能否让他把问题写进code_guide.md文件,然后等待人接入,如果一段时间没人介入就自动cli端修复,因为用的glm5,写代码不是很强,我现在是这样做的,然后让侧栏的codex去根据code_guide修代码
这个我找时间适配一下
/research-pipeline — AUTO_PROCEED: true 也会断
>
> 现在已经适配Cursor 和单独一个Codex Subagent review,欢迎体验~
出现代码问题时,能否让他把问题写进code_guide.md文件,然后等待人接入,如果一段时间没人介入就自动cli端修复,因为用的glm5,写代码不是很强,我现在是这样做的,然后让侧栏的codex去根据code_guide修代码
现在已经适配Cursor 和单独一个Codex Subagent review,欢迎体验~
我们即将给一个md 文档描述怎么适配,但是现在git仓库有点问题,不能fork 请稍等
同时也没有/path/to/feishu-claude-code/logs/*.log这一路径**
Discovery Source
GitHub Open Source Aggregated via automated community intelligence tracking.
Tech Stack Dependencies
No direct open-source NPM package mentions detected in the product documentation.
Media Tractions & Mentions
No mainstream media stories specifically mentioning this product name have been intercepted yet.
Deep Research & Science
No direct peer-reviewed scientific literature matched with this product's architecture.
SaaS Metrics