惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Engineering at Meta
Engineering at Meta
E
Exploit-DB.com RSS Feed
WordPress大学
WordPress大学
腾讯CDC
美团技术团队
博客园 - 聂微东
爱范儿
爱范儿
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
G
Google Developers Blog
T
Tailwind CSS Blog
阮一峰的网络日志
阮一峰的网络日志
F
Fortinet All Blogs
月光博客
月光博客
A
About on SuperTechFans
I
InfoQ
B
Blog
S
Security Affairs
K
KPMG report finds enterprise disconnect between AI and its ROI | CIO
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
Help Net Security
Help Net Security
Schneier on Security
Schneier on Security
P
Proofpoint News Feed
O
OpenAI News
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
罗磊的独立博客
www.infosecurity-magazine.com
www.infosecurity-magazine.com
W
WeLiveSecurity
B
Blog RSS Feed
Simon Willison's Weblog
Simon Willison's Weblog
Google Online Security Blog
Google Online Security Blog
aimingoo的专栏
aimingoo的专栏
S
Securelist
酷 壳 – CoolShell
酷 壳 – CoolShell
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
K
Kaspersky official blog
Microsoft Security Blog
Microsoft Security Blog
S
Secure Thoughts
T
The Blog of Author Tim Ferriss
小众软件
小众软件
H
Hackread – Cybersecurity News, Data Breaches, AI and More
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
大猫的无限游戏
大猫的无限游戏
J
Java Code Geeks
Microsoft Azure Blog
Microsoft Azure Blog
C
Cyber Attacks, Cyber Crime and Cyber Security
Last Week in AI
Last Week in AI
T
Threat Research - Cisco Blogs
Blog — PlanetScale
Blog — PlanetScale
D
DataBreaches.Net

Show HN

暂无文章

Bastion
almostlit · 2026-06-14 · via Show HN

Define your agent’s environment with JSON configuration.

{

"agents": {

"opencode": {

"working_directory": "/workspace/acme-app",

"auth": {

"openai": {

"type": "api",

"key": "${{ env.OPENAI_API_KEY }}"

}

},

"config": {

"model": "openai/gpt-5.5",

"permission": "allow"

}

}

},

"actions": {

"init": [

{

"use": "setup_bun"

},

{

"run": "git clone https://github.com/.../acme-app.git",

"working_directory": "/workspace"

},

{

"run": "bun install",

"working_directory": "/workspace/acme-app"

}

],

"start": [

{

"run": "nohup bun run dev &",

"working_directory": "/workspace/acme-app"

}

]

}

}