展示HN:厌倦了人工智能副驾驶仅仅是自动补全,于是我创建了Glass Arc。
嘿,HN,
在过去的几个月里,我意识到我每月支付20美元给一个AI,它基本上只是一个非常好的自动补全工具。它等待我输入,猜测下一个代码块,然后停止。但软件工程不仅仅是编写语法,它还包括管理文件系统、运行终端命令和调试堆栈跟踪。
因此,我调整了我的项目,构建了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>