ワンクリックで
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: