Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
fc3a4d2
Update DS submodule and refresh workflow editor icons
matheusgalvao1 Feb 23, 2026
7a4b57c
Adopt DS split panel and modal components in web app
matheusgalvao1 Feb 23, 2026
03b76f4
Fix editor layout and align header icon styling
matheusgalvao1 Feb 23, 2026
c41b0f8
Refactor zoom controls and clean up DS UI styles
matheusgalvao1 Feb 23, 2026
b456096
Remove dotenv usage and require exported OpenAI key
matheusgalvao1 Feb 23, 2026
2c56ecc
Fail agent runs cleanly and improve error UX
matheusgalvao1 Feb 23, 2026
635ed4e
Add run preflight rules and cancel-run UI
matheusgalvao1 Feb 23, 2026
d36c34d
Adding run-readiness docs
matheusgalvao1 Feb 23, 2026
1cfca46
Falling back to create data folder at runtime if deleted or missing
matheusgalvao1 Feb 23, 2026
b608c19
Updating AGENTS.md
matheusgalvao1 Feb 23, 2026
0da644b
Onboarding Claude
matheusgalvao1 Feb 23, 2026
f3182ff
fix(web): reduce canvas dot contrast in dark mode
matheusgalvao1 Feb 23, 2026
16d9c87
fix(web): fix web search button appearance in dark mode
matheusgalvao1 Feb 23, 2026
dfd6821
feat(engine): rename last_output to previous_output and add {{PREVIOU…
matheusgalvao1 Feb 23, 2026
e85cb1e
feat(server): add /api/run-stream SSE endpoint for progressive streaming
matheusgalvao1 Feb 23, 2026
a8d3024
feat(web): progressive chat rendering via SSE, per-agent labels, and …
matheusgalvao1 Feb 23, 2026
871b525
docs: update docs for SSE streaming and PREVIOUS_OUTPUT template
matheusgalvao1 Feb 23, 2026
bc3db4a
feat: load default workflow from project-root default-workflow.json
matheusgalvao1 Feb 23, 2026
9234d8a
feat: load default workflow from project-root default-workflow.json
matheusgalvao1 Feb 23, 2026
64e2aef
feat: load models and reasoning efforts from .config/config.json
matheusgalvao1 Feb 23, 2026
08820b0
docs: update docs for .config/, new API routes, and PREVIOUS_OUTPUT
matheusgalvao1 Feb 23, 2026
be5b765
fix: address PR review issues
matheusgalvao1 Feb 24, 2026
69c21f5
fix(server): use res.on('close') instead of req.on('close') in /run-s…
matheusgalvao1 Feb 24, 2026
5a36b77
fix(web): revert zoom-stepper border-radius to 50%
matheusgalvao1 Feb 24, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 36 additions & 0 deletions .config/config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
{
"providers": [
{
"id": "openai",
"name": "OpenAI",
"enabled": true,
"models": [
{
"id": "gpt-5",
"name": "GPT-5",
"reasoningEfforts": ["minimal", "low", "medium", "high"]
},
{
"id": "gpt-5-mini",
"name": "GPT-5 Mini",
"reasoningEfforts": ["minimal", "low", "medium", "high"]
},
{
"id": "gpt-5-nano",
"name": "GPT-5 Nano",
"reasoningEfforts": ["minimal", "low", "medium", "high"]
},
{
"id": "gpt-5.1",
"name": "GPT-5.1",
"reasoningEfforts": ["none", "low", "medium", "high"]
},
{
"id": "gpt-5.2",
"name": "GPT-5.2",
"reasoningEfforts": ["none", "low", "medium", "high", "xhigh"]
}
]
}
]
}
13 changes: 8 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,16 @@ npm-debug.log*
yarn-debug.log*
yarn-error.log*

# Env files
.env
.env.local
.env.*.local

# OS
.DS_Store

# Scripts
setup.sh

# Local config
.config/default-workflow.json

# Environment files (safety net — never commit secrets)
.env
.env.local
.env.*.local
Loading