Show HN: 受够了 AI 副驾驶只会自动补全,我做了 Glass Arc
4 分•作者: Conquer01•5 个月前
嗨 HN,
过去几个月里,我意识到我每月要为一项 AI 服务支付 20 美元,而它本质上只是一个非常棒的自动补全工具。它等待我输入,猜测下一段代码,然后停止。但软件工程不仅仅是编写语法,它还包括管理文件系统、运行终端命令和调试堆栈跟踪。
所以我调整了我的项目,构建了 Glass Arc。它是一个智能工作区,直接驻留在 VS Code 中。
它不仅仅是生成文本,我赋予了它对本地环境的实际控制权(安全地):
1. **智能执行:** 你给它一个意图,它就会在多个文件中起草架构,管理依赖关系树,并运行标准终端命令来搭建基础设施。
2. **运行时自动修复:** 这是最难的部分。当终端出现致命异常时,Glass Arc 会拦截堆栈跟踪,分析崩溃上下文,编写修复程序并注入它。
3. **多人协作:** 生成一个安全的 vscode:// 深度链接,这样你就可以把它放到 Slack 中,并将你团队的 IDE 同步到同一个实时会话中。
4. **按使用量付费:** 我放弃了标准的每月 20 美元 SaaS 模式。它基于积分系统运行——只有当 Architect 正在主动修改你的系统时,你才需要付费。(通过 GitHub 登录可获得 200 免费积分来试用)。
我很乐意让你来尝试破坏它,测试自动修复功能,并拆解它的架构。我遗漏了什么?
已在 VS Code 市场上线,安装地址:[https://www.glassarc.dev/](https://www.glassarc.dev/)
查看原文
Hey HN,<p>Over the last few months, I realized I was paying $20/month for an AI that essentially just acts as a really good autocomplete. It waits for me to type, guesses the next block, and stops. But software engineering isn't just writing syntax, it's managing the file system, running terminal commands, and debugging stack traces.<p>So I pivoted my project and built Glass Arc. It’s an agentic workspace that lives directly inside VS Code.<p>Instead of just generating text, I gave it actual agency over the local environment (safely):<p>1. Agentic Execution: You give it an intent, and it drafts the architecture across multiple files, managing the dependency tree and running standard terminal commands to scaffold the infrastructure.<p>2. Runtime Auto-Heal: This was the hardest part. When a fatal exception hits the terminal, Glass Arc intercepts the stack trace, analyzes the crash context, writes the fix, and injects it.<p>3. Multiplayer: Generates a secure vscode:// deep-link so you can drop it in Slack and sync your team's IDEs into the same live session.<p>4. Pay-as-you-go: I scrapped the standard $20/mo SaaS model. It runs on a credit system—you only pay when the Architect is actively modifying your system. (Signing in via GitHub drops 200 free credits to test it out).<p>I’d love for you to try to break it, test the auto-healing, and tear apart the architecture. What am I missing?<p>Live on the VS code Marketplace, Install: <a href="https://www.glassarc.dev/" rel="nofollow">https://www.glassarc.dev/</a>