chore: block agent-local files from git (.claude/ CLAUDE.md AGENTS.md etc)
Removes stale webui-mvp AGENTS.md and expands .gitignore to block all agent-local context files from being committed. Fixes .claude/* → .claude/ (directory block).
This commit is contained in:
8
.gitignore
vendored
8
.gitignore
vendored
@@ -16,7 +16,13 @@ archive/
|
|||||||
.env
|
.env
|
||||||
.env.*
|
.env.*
|
||||||
!.env.example
|
!.env.example
|
||||||
.claude/*
|
.claude/
|
||||||
|
CLAUDE.md
|
||||||
|
AGENTS.md
|
||||||
|
.cursorrules
|
||||||
|
.windsurfrules
|
||||||
|
.aider*
|
||||||
|
copilot-instructions.md
|
||||||
|
|
||||||
# Generated screenshots and transient artifacts
|
# Generated screenshots and transient artifacts
|
||||||
screenshot-*.png
|
screenshot-*.png
|
||||||
|
|||||||
53
AGENTS.md
53
AGENTS.md
@@ -1,53 +0,0 @@
|
|||||||
# Web UI MVP Instructions
|
|
||||||
|
|
||||||
Canonical source: <repo>/
|
|
||||||
Symlink (for imports): <agent-dir>/webui-mvp -> <repo>
|
|
||||||
Runtime state: ~/.hermes/webui-mvp/sessions/
|
|
||||||
|
|
||||||
Purpose:
|
|
||||||
- Claude-style web UI for Hermes. Chat, workspace file browser, cron/skills/memory viewers.
|
|
||||||
|
|
||||||
Start server:
|
|
||||||
cd <agent-dir>
|
|
||||||
nohup venv/bin/python <repo>/server.py > /tmp/webui-mvp.log 2>&1 &
|
|
||||||
# OR: <repo>/start.sh
|
|
||||||
|
|
||||||
Run tests:
|
|
||||||
cd <agent-dir>
|
|
||||||
venv/bin/python -m pytest <repo>/tests/ -v
|
|
||||||
|
|
||||||
Health check: curl http://127.0.0.1:8787/health
|
|
||||||
Logs: tail -f /tmp/webui-mvp.log
|
|
||||||
SSH tunnel from Mac: ssh -N -L 8787:127.0.0.1:8787 <user>@<your-server>
|
|
||||||
|
|
||||||
Living documents (always update after a sprint):
|
|
||||||
<repo>/ROADMAP.md
|
|
||||||
<repo>/ARCHITECTURE.md
|
|
||||||
<repo>/TESTING.md
|
|
||||||
|
|
||||||
Sprint process skill: webui-sprint-loop
|
|
||||||
|
|
||||||
# Workspace Convention (Web UI Sessions)
|
|
||||||
|
|
||||||
When running as an agent invoked from the web UI, each user message is prefixed with:
|
|
||||||
|
|
||||||
[Workspace: /absolute/path/to/workspace]
|
|
||||||
|
|
||||||
This tag is the single authoritative source of the active workspace. It reflects
|
|
||||||
whichever workspace the user has selected in the UI at the moment they sent that message.
|
|
||||||
It updates on every message, so if the user switches workspaces mid-session, the very
|
|
||||||
next message will carry the new path. Always use the value from the most recent tag.
|
|
||||||
|
|
||||||
This tag overrides any prior workspace mentioned in the system prompt, memory, or
|
|
||||||
conversation history. Never infer or fall back to a hardcoded path like
|
|
||||||
~/workspace when this tag is present.
|
|
||||||
|
|
||||||
Apply it as the default working directory for ALL file operations:
|
|
||||||
|
|
||||||
- write_file: resolve relative paths against this workspace
|
|
||||||
- read_file / search_files: resolve paths relative to this workspace
|
|
||||||
- terminal workdir: set to this path unless the user explicitly says otherwise
|
|
||||||
- patch: resolve file paths relative to this workspace
|
|
||||||
|
|
||||||
If no [Workspace: ...] tag is present (e.g., CLI sessions), fall back to
|
|
||||||
~/workspace as the default.
|
|
||||||
Reference in New Issue
Block a user