Godopu
a0a92432b8
docs: align MULTI_AGENT_RULES.ko.md with markdown file-based collaboration protocols
2026-07-10 09:36:23 +09:00
Godopu
c7ce014eac
docs: enforce markdown file-based task delegation and result delivery in MULTI_AGENT_RULES.md
2026-07-10 09:34:07 +09:00
Godopu
3a9964c0e2
fix(deploy): resolve SQL timeouts, YAML drift, and orphaned tmux sessions
...
- lib.sh: update atomic_dump_yaml to sync with YAML on any active session status change; set reader timeouts to 60.0s
- create_session.sh: add exit trap cleanup_tmux_on_error to rollback spawned tmux sessions on initialization failures
- reconcile.sh, update_yaml_resumed.sh, status.sh, stop_session.sh: align SQLite connection timeout values to 60.0s
2026-07-10 09:21:07 +09:00
Godopu
6408f4a5ec
feat(deploy): parameterize distribution URLs via MAM_*_URL env vars
...
- install.sh: REPO_URL and ARCHIVE_URL now use ${MAM_REPO_URL:-...} and ${MAM_ARCHIVE_URL:-...}
- update.sh: INSTALLER_URL now uses ${MAM_INSTALLER_URL:-...} with env-inheritance comment
- .env.example: add MAM_REPO_URL / MAM_ARCHIVE_URL / MAM_INSTALLER_URL section with usage notes
- deploy/README.md: add Custom Fork / Private Mirror installation examples
2026-07-09 12:05:43 +09:00
Godopu
0fa09b4d90
refactor: rename AGENT.md to MULTI_AGENT_RULES.md and consolidate INSTRUCTION.md into AGENTS.md
...
- .agents/AGENT.md -> .agents/MULTI_AGENT_RULES.md
- .agents/AGENT.ko.md -> .agents/MULTI_AGENT_RULES.ko.md
- INSTRUCTION.md -> AGENTS.md (root-level)
- Update create_session.sh onboarding prompt to reference new path
- All cross-references in BOOTSTRAP.md/.ko.md, README.md/.ko.md, SKILL_FEATURES.md updated
- Fix document title headers (# AGENT.md -> # MULTI_AGENT_RULES.md, # CLAUDE.md -> # AGENTS.md)
2026-07-09 12:04:25 +09:00
Godopu
2b9bb39d6f
fix: add cline agent support to resolve_session_id.sh and resume documentation
2026-06-28 10:58:43 +09:00
Godopu
21a4e96052
fix: resolve correct python interpreter for injected publish_event command
2026-06-28 10:48:14 +09:00
Godopu
0c5363e469
docs: update SKILL_FEATURES.md with dynamic TUI readiness gating and onboarding automation
2026-06-28 10:44:43 +09:00
Godopu
ef57749e9f
feat: implement --onboard flag in multi-agent-mux-create and update AGENT.md onboarding handshake protocol
2026-06-28 10:42:23 +09:00
Godopu
6e3c866461
docs: clean up stale create_session usage instructions in comments and markdown examples
2026-06-28 10:31:58 +09:00
Godopu
7c8267240d
feat: enforce required agent roles at creation and role immutability in registry
2026-06-28 10:27:36 +09:00
Godopu
f457180777
refactor: adapt multi-agent-mux skills and agent guidelines for the Team Leader scenario
2026-06-28 10:21:24 +09:00
Godopu
81474ac3f7
docs: add Step 0 provisioning to BOOTSTRAP.md and update README.md with curl installer
2026-06-28 09:34:52 +09:00
Godopu
dd9500a271
feat(multi-agent-mux): integrate cline agent support, fix sqlite3 naming collision, simplify delegation docs, and add SKILL_FEATURES.md
2026-06-28 09:17:11 +09:00
Godopu
dfd0a9483d
feat: implement loop and discuss task delegation types in multi-agent-mux-delegate-job
2026-06-27 08:28:47 +09:00
Godopu
3b8db1eca2
fix(skills): add 0.5s sleep delay after paste-buffer to prevent key collisions
2026-06-26 23:00:30 +09:00
Godopu
698ea09b27
docs: update AGENT.md references to .agents/AGENT.md
2026-06-26 21:33:26 +09:00
Godopu
57d8f6c2ff
refactor: move AGENT.md and AGENT.ko.md to .agents/ directory
2026-06-26 21:28:41 +09:00
Godopu
e14ee90243
fix(skills): point HOME_DIR to real home directory and fix Hermes database path
2026-06-26 21:17:43 +09:00
Godopu
b47fcbda9b
fix(deploy): resolve TARGET_DIR to absolute path in update.sh
2026-06-24 12:29:00 +09:00
Godopu
5da6e59d2f
fix(deploy): fix update.sh fallback mode, trap rollback, and database names
2026-06-24 12:28:17 +09:00
Godopu
701d3f10d9
Add MAM updater script (update.sh) and integrate into installer copy block
2026-06-24 12:24:17 +09:00
Godopu
5d69ad4f0b
Harden remove.sh: fix fallback data-loss risk, prevent remove.sh clobbering, and ensure macOS compatibility
2026-06-24 12:08:00 +09:00
Godopu
db75b7deb0
Add MAM uninstaller script (remove.sh) and integrate into installer copy block
2026-06-24 11:49:45 +09:00
Godopu
b37407874d
Harden installer: partial-install detection, complete runtime docs, explicit copy checks
2026-06-24 10:43:08 +09:00
Godopu and Claude Opus 4.8
387b43d8e3
fix(deploy): stage installer download and copy runtime assets no-clobber (FW-D1)
...
deploy/install.sh extracted the repo archive in-place with
`tar --strip-components=1`, which inside an existing project could silently
overwrite the target's own README.md/FUTURE_WORKS.md/etc and litter it with
this repo's dev docs.
Rebuild the fetch path:
- stage the clone/extract into a `mktemp -d` dir, never in-place
- verify `.agents/skills/lib.sh` is present before copying anything
- copy only runtime assets (.agents/, AGENT.md, .env.example) into the target
with per-file no-clobber guards (`[ ! -e ]`), so existing files always win
- post-fetch sanity check now tests a file, not just the directory
- fail fast when neither git nor curl is available
Use explicit `[ ! -e ]` guards + a POSIX find merge rather than `cp -n`
(non-portable; emits a deprecation warning on GNU coreutils 9.x). The earlier
`tar --exclude` denylist idea was rejected in review: non-portable and the
unanchored `--exclude="scripts"` pattern stripped the skills' own nested
scripts/ dirs, yielding a silently broken install.
Mark FW-D1 resolved and FW-D2 partially addressed in FUTURE_WORKS.md/.ko.md.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com >
2026-06-24 10:33:05 +09:00
Godopu
7eaaaf8944
fix(lib,install): update locking doc to SQLite transaction, cache NFS check, verify PyYAML
2026-06-23 23:41:18 +09:00
Godopu
25cf729040
fix(deploy): add directory creation guard and sanity check after download in installer
2026-06-23 23:22:45 +09:00
Godopu
1d2eca57ce
fix(deploy): automatically download .agents/skills from Gitea if missing in installer
2026-06-23 23:16:00 +09:00
Godopu
82dcb78a85
fix(deploy): refine install.sh variables, pip upgrade, permissions, and active defaults based on review
2026-06-23 08:32:02 +09:00
Godopu
a10c789dc2
refactor(wrapper): update dry-run message to align with existing session delegation
2026-06-23 08:26:13 +09:00
Godopu
6cd0d5333a
feat(deploy): add Gitea deployment templates, installer, and CI/CD workflow
2026-06-23 08:22:41 +09:00
Godopu
99ac8b3ce4
refactor(security,concurrency): resolve structural issues, enforce Claude permission skip, update docs
2026-06-23 08:03:43 +09:00
Godopu
12dceb14b2
feat(monitor): consolidate per-job watchdogs into shared wildcard subscriber (FW-W3)
2026-06-23 00:37:39 +09:00
Godopu
31f18b2e5a
docs: update FUTURE_WORKS.md and FUTURE_WORKS.ko.md with portability and workflow bottleneck roadmap
2026-06-22 16:28:31 +09:00
Godopu
c721d1cd86
refactor: rename skills from tmux-agent-orchestrate-* to multi-agent-mux-* in backplane scripts and documents
2026-06-22 15:58:48 +09:00
Godopu
ee48d77d0a
docs: add README.md and README.ko.md introducing the orchestration skills and backplane architecture
2026-06-22 14:19:15 +09:00
Godopu
9735258bc5
refactor: rename metadata directory .hermes to .mam in backplane scripts and documents
2026-06-22 14:06:13 +09:00
Godopu
30e447189e
refactor: migrate skills/ directory to .agents/skills/
2026-06-21 14:42:12 +00:00
Godopu
e1d998e1ef
feat: add support for hermes agent in tmux orchestration scripts
2026-06-21 14:21:30 +00:00
Godopu
aacea05f6a
docs: replace CLAUDE.md content with README.md title
2026-06-21 13:11:05 +00:00
Godopu
a414158864
docs: rename project reference from advanced_multi_agent to tmux_agent_orchestration
2026-06-21 11:32:57 +00:00
Godopu
d21d419a7c
docs: update commit references for FW-N5, FW-N6, and FW-N7
2026-06-21 10:45:45 +00:00
Godopu
450722b3df
docs(security): correct example metadata in job-protocol.md to refer to hmac_sig
2026-06-21 10:45:26 +00:00
Godopu
6a88f10a74
feat(security): implement FW-N5, FW-N6, FW-N7 (HMAC-SHA256 protocol docs, auto-generate token, replay attack defense)
2026-06-21 10:39:49 +00:00
Godopu
8a4067ca91
docs: internationalize top-level documentation files to English and backup Korean originals to *.ko.md
2026-06-21 10:35:01 +00:00
Godopu
738e4dc8d1
docs: add BOOTSTRAP.md project setup and onboarding guide
2026-06-21 10:27:33 +00:00
Godopu
0017ef572d
feat: add interactive Understand-Anything project analysis dashboard
2026-06-21 10:10:55 +00:00
Godopu
ec92b6c3fa
docs: commit analysis report and instruction documents
2026-06-21 10:07:38 +00:00
Godopu
5d555dbf6d
docs: rename Messaging_System_REPORT.md to MESSAGING.md and update references
2026-06-21 10:06:53 +00:00