30d92bef48
- README architecture diagram drops the socat/ssh image box and the agent's ~/.ssh/config; the prose-bullets section drops the ssh image; the manifest example swaps `ssh:` for `git:` so someone copy-pasting it picks up the new shape. - claude-bottle.example.json: `default` bottle's `"ssh": []` is gone (now just an empty bottle); the gitea-dev example already uses `git:` since the ExtraHosts work. - PRD 0007 carries a "Superseded by PRD 0009" header at the top with a one-paragraph block explaining why; the file stays so the rationale of the prior design is still in-tree. - git_gate.py: drop the now-stale shadow-route mention from a docstring (the validator went away in the manifest layer).
62 lines
1.6 KiB
JSON
62 lines
1.6 KiB
JSON
{
|
|
"bottles": {
|
|
"default": {
|
|
"env": {},
|
|
"egress": {
|
|
"allowlist": [
|
|
"github.com",
|
|
"objects.githubusercontent.com",
|
|
"registry.npmjs.org"
|
|
]
|
|
}
|
|
},
|
|
|
|
"gitea-dev": {
|
|
"env": {
|
|
"GITEA_TOKEN": "?paste your Gitea API token",
|
|
"GITHUB_TOKEN": "${GH_PAT}",
|
|
"GIT_AUTHOR_NAME": "Eric Diderich",
|
|
"NODE_ENV": "development"
|
|
},
|
|
"git": [
|
|
{
|
|
"Name": "claude-bottle",
|
|
"Upstream": "ssh://git@gitea.dideric.is:30009/didericis/claude-bottle.git",
|
|
"IdentityFile": "/Users/didericis/.ssh/id_ed25519_gitea",
|
|
"KnownHostKey": "ssh-ed25519 AAAA...",
|
|
"ExtraHosts": { "gitea.dideric.is": "100.78.141.42" }
|
|
}
|
|
],
|
|
"egress": {
|
|
"allowlist": [
|
|
"github.com",
|
|
"objects.githubusercontent.com",
|
|
"registry.npmjs.org",
|
|
"pypi.org",
|
|
"files.pythonhosted.org"
|
|
]
|
|
}
|
|
}
|
|
},
|
|
|
|
"agents": {
|
|
"researcher": {
|
|
"bottle": "default",
|
|
"skills": [],
|
|
"prompt": "You are a research assistant. Read widely, summarise concisely, and cite sources by URL. Do not write code unless explicitly asked."
|
|
},
|
|
|
|
"gitea-helper": {
|
|
"bottle": "gitea-dev",
|
|
"skills": ["init-prd"],
|
|
"prompt": "You help maintain Gitea-hosted projects. Prefer small, focused commits. Follow Conventional Commits. Run tests before pushing."
|
|
},
|
|
|
|
"minimal": {
|
|
"bottle": "default",
|
|
"skills": [],
|
|
"prompt": ""
|
|
}
|
|
}
|
|
}
|