소스 정보
- 저장소
- BEKO2210/Firstbrain
- 최근 소스 활동
- 2026년 5월 17일 12:40
- 감지된 SKILL.md 언어
- 영어
- 스타
- 15
- 포크
- 2
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/BEKO2210/Firstbrain --skill health명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
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.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | health |
| trigger | /health |
| description | Detect orphan notes and broken wiki-links with suggested fixes |
| version | 3.0.0 |
| type | skill |
| tags | ["skill","agent","maintenance","health","links"] |
Quick diagnostic of vault health. Reports orphan notes (0-1 connections) and broken wiki-links with suggested fixes. Auto-fixes obvious typos (single clear match), proposes fixes for ambiguous cases, and flags items with no match for user attention.
/health # Full vault health report
/health --fix # Auto-apply all auto-fixable broken links (Levenshtein <= 1, single match)
| Check | Description | Threshold |
|---|---|---|
| Orphan notes | Notes with 0-1 total connections (inbound + outbound resolved links) | Excludes templates, MOCs, system files |
| Broken links | Wiki-links pointing to nonexistent targets (resolved: false in link-map) | Excludes links from template files |
Claude follows these steps when /health is invoked:
ensureFreshIndexes('.') to rebuild indexes if stale (>5 min)const { loadJson } = require('./.agents/skills/scan/utils.cjs');
const path = require('path');
const indexDir = path.join('.', '.claude', 'indexes');
const vaultIndex = loadJson(path.join(indexDir, 'vault-index.json'));
const linkMap = loadJson(path.join(indexDir, 'link-map.json'));
const { analyzeHealth, classifyFix } = require('./.agents/skills/health/health-utils.cjs');
const { orphans, brokenLinks, stats } = analyzeHealth(vaultIndex, linkMap);
Vault Health: X orphan notes, Y broken links (Z total notes, W total links)
findConnections (from connect-utils.cjs) to suggest potential links based on the orphan's tagsclassifyFix(suggestions) to determine the action
b. If auto: Show the fix and mark for auto-application
AUTO-FIX: [[Docekr]] -> [[Docker]] (in Note.md, typo correction)
c. If propose: Show candidates and ask the user
d. If : Flag for user attention
const { analyzeHealth, suggestFixes, classifyFix, ensureFreshIndexes } = require('./.agents/skills/health/health-utils.cjs');
const { findConnections } = require('./.agents/skills/connect/connect-utils.cjs');
const { loadJson } = require('./.agents/skills/scan/utils.cjs');
const path = require('path');
// Step 1: Ensure indexes are current
ensureFreshIndexes('.');
// Step 2: Load indexes
const indexDir = path.join('.', '.claude', 'indexes');
const vaultIndex = loadJson(path.join(indexDir, 'vault-index.json'));
const linkMap = loadJson(path.join(indexDir, 'link-map.json'));
const tagIndex = loadJson(path.join(indexDir, 'tag-index.json'));
// Step 3: Run health analysis
const { orphans, brokenLinks, stats } = analyzeHealth(vaultIndex, linkMap);
// Step 4: For each orphan, suggest connections
for (const orphan of orphans) {
const suggestions = findConnections(orphan.path, vaultIndex, linkMap, tagIndex);
console.log();
.();
}
( bl brokenLinks) {
classification = (bl.);
.();
}
## Vault Health Report
**Summary:** 3 orphan notes, 2 broken links (47 total notes, 89 total links)
### Orphan Notes (0-1 connections)
1. **Note A** (0 connections)
Suggested links: [[Related Note]], [[Another Note]]
2. **Note B** (1 connection)
Suggested links: [[Topic Note]]
### Broken Wiki-Links
1. AUTO-FIX: [[Docekr]] -> [[Docker]] (in Project Notes.md)
2. PROPOSE: [[dock]] in Daily.md -- Did you mean: [[Docker]] or [[Docker Compose]]?
3. MANUAL: [[Nonexistent]] in Ideas.md -- No match found
### Actions Available
- Reply "fix all" to apply all auto-fixes
- Reply "fix 1" to apply a specific auto-fix
- For PROPOSE items, reply with your choice (e.g., "2: Docker")
This skill respects the three governance zones defined in .claude/rules/governance.md:
| Zone | Action | When |
|---|---|---|
| AUTO | Fix broken link automatically | Single clear match with Levenshtein distance <= 1 (obvious typo) |
| PROPOSE | Present fix candidates for user approval | Multiple possible matches or ambiguous correction |
| MANUAL | Flag for user attention | No match found -- user must decide |
Logging: All auto-fixes are logged to .claude/changelog.md as required by the AUTO zone governance rule.
/maintain in Phase 5.PROPOSE: [[dock]] in Note.md -- Did you mean: [[Docker]] or [[Docker Compose]]?
manualMANUAL: [[Nonexistent Note]] in Note.md -- No match found
--fix flag is used):
[[old target]] with [[correct target]].claude/changelog.md (per governance AUTO zone)scan('.') to update indexes after any fixes are applied