Initial project blueprint

This commit is contained in:
2026-07-03 20:51:36 +03:00
commit 7d6cc1c83e
25 changed files with 1486 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
policy:
default_mode: confirm
resources:
filesystem: confirm
shell: confirm
sql: confirm
mcp: confirm
external_models: confirm
desktop: confirm
browser: confirm
+10
View File
@@ -0,0 +1,10 @@
policy:
default_mode: full_auto
resources:
filesystem: full_auto
shell: full_auto
sql: full_auto
mcp: full_auto
external_models: full_auto
desktop: full_auto
browser: full_auto
+38
View File
@@ -0,0 +1,38 @@
project:
id: default
name: Local Only Project
models:
weak:
provider: local
model: qwen-coder-small
base_url: http://localhost:8001/v1
strong:
provider: local
model: qwen-coder-large
base_url: http://localhost:8002/v1
vision:
provider: disabled
model: null
embedding:
provider: local
model: bge-m3
base_url: http://localhost:8003/v1
execution:
max_graph_nodes: 20
max_agent_steps: 8
max_local_retries: 2
allow_external_models: false
allow_paid_fallback: false
policy:
default_mode: confirm
resources:
filesystem: confirm
shell: confirm
sql: confirm
mcp: confirm
external_models: disabled
desktop: confirm
browser: confirm
+37
View File
@@ -0,0 +1,37 @@
project:
id: hybrid
name: Local Plus External
models:
weak:
provider: local
model: qwen-coder-small
base_url: http://localhost:8001/v1
strong:
provider: external
model: gpt-strong
base_url: https://api.example.com/v1
api_key_env: EXTERNAL_MODEL_API_KEY
vision:
provider: external
model: gpt-vision
base_url: https://api.example.com/v1
api_key_env: EXTERNAL_MODEL_API_KEY
execution:
max_graph_nodes: 20
max_agent_steps: 8
max_local_retries: 2
allow_external_models: true
allow_paid_fallback: true
policy:
default_mode: confirm
resources:
filesystem: confirm
shell: confirm
sql: confirm
mcp: full_auto
external_models: confirm
desktop: confirm
browser: confirm