一键导入
journal-manager
2-tier knowledge journal — index + entries system for capturing lessons, bugs, and insights during development.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
2-tier knowledge journal — index + entries system for capturing lessons, bugs, and insights during development.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Auto-generate concise, visually stunning README.md with project auto-scanning, badges, and 3 style modes.
Generate unit/integration tests with smart edge case analysis (Zero Token Skeleton + Smart Mode).
Persistent team profiles — carry your coding style, rules, and bug-fix knowledge across projects. 3-tier memory (Hot/Warm/Cold) with TF-IDF search.
Deploy local websites to the internet instantly via Cloudflare Tunnel. Zero hosting, zero domain needed.
Suggests suitable tech stack based on project requirements using local database.
Analyzes market trends, hot features, and user expectations.
| name | journal-manager |
| description | 2-tier knowledge journal — index + entries system for capturing lessons, bugs, and insights during development. |
A lightweight knowledge journal that captures development insights, bug fixes, and lessons learned. Uses a 2-tier system: an index file for quick lookup and individual entry files for details.
python .agent/skills/journal-manager/scripts/journal.py add --title "Fixed N+1 query in orders API" --tags "performance,database" --body "Used DataLoader to batch queries. Reduced response time from 2s to 200ms."
python .agent/skills/journal-manager/scripts/journal.py list
python .agent/skills/journal-manager/scripts/journal.py search "database"
python .agent/skills/journal-manager/scripts/journal.py show <entry-id>
.agent/brain/journal/
├── index.json # Quick lookup: id, title, tags, date
└── entries/
├── 2024-01-15_fixed-n1-query.md
├── 2024-01-16_auth-flow-redesign.md
└── ...
The journal can be triggered automatically by agents when: