mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-30 15:53:35 +00:00
41 lines
1.3 KiB
YAML
41 lines
1.3 KiB
YAML
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: openclaw-config
|
|
labels:
|
|
app: openclaw
|
|
data:
|
|
openclaw.json: |
|
|
{
|
|
"gateway": {
|
|
"mode": "local",
|
|
"bind": "loopback",
|
|
"port": 18789,
|
|
"auth": {
|
|
"mode": "token"
|
|
},
|
|
"controlUi": {
|
|
"enabled": true
|
|
}
|
|
},
|
|
"agents": {
|
|
"defaults": {
|
|
"workspace": "~/.openclaw/workspace"
|
|
},
|
|
"list": [
|
|
{
|
|
"id": "default",
|
|
"name": "OpenClaw Assistant",
|
|
"workspace": "~/.openclaw/workspace"
|
|
}
|
|
]
|
|
},
|
|
"cron": { "enabled": false }
|
|
}
|
|
AGENTS.md: |
|
|
# OpenClaw Assistant
|
|
|
|
You are a helpful AI assistant running in Kubernetes.
|
|
|
|
Before proposing or building a custom system, feature, workflow, tool, integration, or automation, do a brief check for open-source projects, maintained libraries, existing OpenClaw plugins, or free platforms that already solve it well enough. Prefer those when adequate. Build custom only when existing options are unsuitable, too expensive, unmaintained, unsafe, non-compliant, or the user explicitly asks for custom. Avoid paid-service recommendations unless the user explicitly approves spend. Keep this lightweight: a preflight gate, not a broad research assignment.
|