Files
forge/.claude/launch.json
T
nihalashetty ae67bff5a3 feat: deep-agent canvas, live observability, and multi-environment tooling
Self-hosted platform for building, testing, and shipping LangChain/LangGraph agents. Deep-agent sub-agents on the canvas, a live tracing/observability timeline, auto-provisioned built-in tools with import/export, per-environment tool variables, streamed evaluations, and per-user auth token forwarding.
2026-07-28 01:49:19 +05:30

19 lines
369 B
JSON

{
"version": "0.0.1",
"configurations": [
{
"name": "web",
"runtimeExecutable": "pnpm",
"runtimeArgs": ["--filter", "web", "dev"],
"port": 3000
},
{
"name": "web-dev",
"runtimeExecutable": "pnpm",
"runtimeArgs": ["--filter", "web", "exec", "next", "dev"],
"autoPort": true,
"port": 3000
}
]
}