ソース情報
- リポジトリ
- BEKO2210/Firstbrain
- ソースの最終更新活動
- 2026年5月17日 12:40
- 検出された SKILL.md の言語
- 英語
- スター
- 15
- フォーク
- 2
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
SOC 職業分類に基づく
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/BEKO2210/Firstbrain --skill memoryコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
SKILL.md を表示中
Arquitecto de Soluciones Principal y Consultor Tecnológico de Andru.ia. Diagnostica y traza la hoja de ruta óptima para proyectos de IA en español.
Security audit, hardening, threat modeling (STRIDE/PASTA), Red/Blue Team, OWASP checks, code review, incident response, and infrastructure security for any project.
Ingeniero de Sistemas de Andru.ia. Diseña, redacta y despliega nuevas habilidades (skills) dentro del repositorio siguiendo el Estándar de Diamante.
| name | memory |
| trigger | /memory |
| description | View and manage Claude's memory -- insights, project context, and embedding status |
| version | 3.0.0 |
| type | skill |
| tags | ["skill","agent","intelligence","memory","insights"] |
A single entry point to understand what Claude knows -- "a dashboard for your AI's brain." Shows working memory summary, long-term insights, active project memories, and embedding index status.
/memory -- Show full memory dashboard (default overview)/memory insights -- Show only long-term insights with details/memory projects -- Show only project memories/memory distill -- Manually trigger insight distillation (normally happens automatically during significant vault activity)Claude operates with a four-layer memory model:
| Layer | Name | Storage | Persistence |
|---|---|---|---|
| 1 | Session Memory | In-context | Single conversation |
| 2 | Working Memory | MEMORY.md + .claude/memory/ topic files | Cross-session |
| 3 | Long-term Summary Memory | .claude/memory/insights.md | Weeks/months |
| 4 | Project-specific Memory | .claude/memory/project-{name}.md files | Project lifetime |
/memory (overview)memory-utils.cjs:
const { generateMemoryOverview } = require('./.agents/skills/memory/memory-utils.cjs');
generateMemoryOverview('.').Output includes: working memory summary, insight count + categories + top entries, active project memories with status, embedding index status.
/memory insightsconst { parseInsights } = require('./.agents/skills/memory/memory-utils.cjs');
const data = parseInsights('.');
/memory projects.claude/memory/project-*.md files./memory distill/scan if indexes are stale.const { loadJson } = require('./.agents/skills/scan/utils.cjs');
const vaultIndex = loadJson('.claude/indexes/vault-index.json');
const tagIndex = loadJson('.claude/indexes/tag-index.json');
const { distillInsights } = require('./.agents/skills/memory/memory-utils.cjs');
const result = distillInsights('.', vaultIndex, tagIndex, { activityLog });
Claude should distill without being asked when either threshold is met:
Either signal meeting threshold triggers distillation. These are guidelines -- Claude uses judgment on when to run distillation and when to stay silent.
Notification policy: Notify for significant updates (new patterns, high-confidence reinforcements). Stay silent for minor ones (small confidence adjustments, no new insights). This is at Claude's discretion.
When proactively surfacing insights during conversation, use a distinct visual callout block:
Pattern noticed: You frequently tag tool notes with both the tool name and #productivity. Want me to apply this pattern to your new Docker note?
Rules for surfacing:
01 - Projects/ with type: project frontmatter..claude/memory/project-{slug}.md with: status, key decisions, blockers, next actions, source link.updated field tracks last modification date..claude/memory/archive/project-{slug}.md (never deleted -- governance)const { archiveProjectMemory } = require('./.agents/skills/memory/memory-utils.cjs');
const result = archiveProjectMemory('.', 'website-relaunch');
// { archived: true, path: '...', lessonsDistilled: 3 }
Individual files per project. Each tracks:
insights.md is plain markdown -- the user can edit, correct, or delete entries directly. Claude respects all user modifications on next read. No special format required beyond the H2/H3 heading structure.
If the user corrects an insight's observation text or confidence, Claude uses the updated values going forward. If the user deletes an insight, Claude does not recreate it unless the pattern re-emerges strongly.
const {
generateMemoryOverview,
distillInsights,
parseInsights,
createProjectMemory,
archiveProjectMemory,
getActiveProjects,
} = require('./.agents/skills/memory/memory-utils.cjs');
const { loadJson } = require('./.agents/skills/scan/utils.cjs');
// Show dashboard
const dashboard = generateMemoryOverview('.');
console.log(dashboard);
// Manually distill
const vaultIndex = loadJson('.claude/indexes/vault-index.json');
const tagIndex = loadJson('.claude/indexes/tag-index.json');
const result = distillInsights('.', vaultIndex, tagIndex, { activityLog: [] });
// Create project memory
const projects = getActiveProjects('.');
for (const project of projects) {
createProjectMemory('.', project);
}