feat(skills): add project-manager v2.2 — per-project context isolation#14417
Open
Krislu1221 wants to merge 2 commits into
Open
feat(skills): add project-manager v2.2 — per-project context isolation#14417Krislu1221 wants to merge 2 commits into
Krislu1221 wants to merge 2 commits into
Conversation
Cross-platform project context isolation & state management. Battle-tested across nanobot, OpenClaw, and Hermes Agent. Features: - Per-project STATUS.md isolation (physical, not logical) - Intent recognition (no rigid keywords) - Tiered templates: Full (A) for complex projects, Lightweight (B) for tasks - Write-safe read-merge-write pattern (reduces accidental overwrites) - Index self-healing (auto-creates index.md, auto-adds missing projects) - Strict memory boundary: project progress in STATUS.md, preferences in MEMORY.md - Git integration: auto-record commit hashes per project v2.2 fixes: - Templates extracted to references/templates.md to reduce context cost - Concurrent-safety claims softened; TOCTOU limitation noted - Git commands scoped to project directory (git -C) - Worktree detection via git-native probe (rev-parse)
Collaborator
|
Supersedes closed #14385 (v2.1). Same feature, updated version. |
1 similar comment
Collaborator
|
Supersedes closed #14385 (v2.1). Same feature, updated version. |
Author
|
Hi there, submitting a Project Manager skill to enhance long-term project handling. It maintains per-project state in |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Add a
project-manageroptional skill that solves the fundamental tension between AI agents' stateless nature and projects' need for continuity. Each project gets its ownSTATUS.mdfile, enabling seamless context recovery across sessions without polluting global memory.Problem
AI agents are stateless — each conversation starts fresh. But real work spans multiple sessions:
MEMORY.md→ 1000+ lines, slow retrievalSolution
A per-project
STATUS.mdsystem — the agent's "external hard drive":Key Features
STATUS.md— no shared stateindex.md, auto-adds missing projectsSTATUS.md, user preferences inMEMORY.mdQuantified Impact
Compatibility
Files Added
v2.2 — Battle-tested across multiple concurrent agent sessions with auto-healing index, write-safe updates, and fuzzy-match fallback.