Deterministic context and memory layer for AI coding agents. Let Agent remember your design system, general context, and database.
npm install -g devminddevmind openclaw-plugin --forceOptional:
devmind openclaw-plugin --project --forceDefault install target:
~/.openclaw/skills/devmind/SKILL.md
devmind claude-plugin --forceThis creates:
.claude-plugin/marketplace.json.claude-plugin/skills/devmind/SKILL.md
Then install that local folder in Claude Code using your plugin installer flow.
devmind codex-plugin --forceOptional:
# Also install project-local skill
devmind codex-plugin --project --force
# Skip legacy mirror paths
devmind codex-plugin --no-legacy --forceDefault install targets:
~/.agents/skills/devmind/SKILL.mdCODEX_HOME/skills/devmind/SKILL.md~/.codex/skills/devmind/SKILL.md
# 1) Design system policy first
devmind design-system --init
# 2) Build overall context
devmind generate --all
# 3) Validate freshness/recommendation
devmind status --jsonYou are ready when .devmind/AGENTS.md and .devmind/index.json exist.
- CI runs on pushes to
mainand pull requests via.github/workflows/ci.yml. - npm publishing runs via
.github/workflows/publish-npm.ymlon tags likev1.2.3or manual dispatch. - Add repository secret
NPM_TOKEN(npm automation token with publish permission). - Release by bumping
package.jsonversion, pushing commit, then pushing a matching tag:
git tag v1.1.2
git push origin v1.1.2- Design system
- Overall context
- Database checks
devmind generate --all
devmind scan
devmind status --jsonDevMind reads .devmindignore (and .devmind/ignore if present) to exclude paths from
scan/generate/status/analyze/audit/extract context workflows.
devmind generate --all skips DB generation if no database config is detected.
devmind context --focus src/features
devmind context --query runbook
devmind retrieve -q "auth middleware flow" --type architecture --json
devmind retrieve -q "ui animation jitter" --route ui --level 2 --state --jsondevmind audit
devmind extract
devmind extract --apply
devmind autosave --source task-enddevmind analyze
devmind validate --strict# 1) Preflight
devmind status --json
# 2) If stale, run recommendedCommand
# 3) Execute with focused retrieval
devmind retrieve -q "<task query>" --json
# 4) Persist memory
devmind autosave --source task-end.devmind/
+-- AGENTS.md
+-- index.json
+-- design-system.json
+-- devmind-tools.json
+-- analysis/
| +-- AUDIT_REPORT.md
| +-- DESIGN_SYSTEM_AUDIT.md
| +-- CODE_DB_MAPPING.md
+-- memory/
| +-- LEARN.md
| +-- checkpoints/
| +-- SESSION_JOURNAL.md
+-- codebase/
+-- database/
Apache 2.0 (c) Nyan Lin Maung