소스 정보
- 저장소
- lis186/SourceAtlas
- 최근 소스 활동
- 2026년 1월 10일 14:56
- 감지된 SKILL.md 언어
- 영어
- 스타
- 46
- 포크
- 4
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
SOC 직업 분류 기준
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/lis186/SourceAtlas --skill flow명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
| name | flow |
| description | Extract business logic flow from code, trace execution path from entry point |
Target: $ARGUMENTS
IMPORTANT: Check these patterns FIRST before doing anything else.
Scan $ARGUMENTS for these keywords. If ANY match, load external file and STOP reading this document:
| If arguments contain... | Then execute this action |
|---|---|
| "dead code" OR "unreachable" OR "unused" | Read scripts/atlas/flow-modes/mode-13-dead-code.md then follow its instructions |
| "async" OR "thread" OR "concurrent" OR "race" | Read scripts/atlas/flow-modes/mode-14-concurrency.md then follow its instructions |
| "taint" OR "injection" OR "untrusted" | Read scripts/atlas/flow-modes/mode-12-taint-analysis.md then follow its instructions |
| "state" OR "status" OR "lifecycle" | Read scripts/atlas/flow-modes/mode-04-state-machine.md then follow its instructions |
| "transaction" OR "rollback" OR "commit" | Read scripts/atlas/flow-modes/mode-09-transaction.md then follow its instructions |
| "log" OR "logging" OR "from logs" | Read scripts/atlas/flow-modes/mode-06-log-discovery.md then follow its instructions |
| "compare" OR "diff" OR "vs" | Read scripts/atlas/flow-modes/mode-05-flow-comparison.md then follow its instructions |
| "feature toggle" OR "feature flag" | Read scripts/atlas/flow-modes/mode-07-feature-toggle.md then follow its instructions |
| "cache" OR "redis" OR "TTL" | Read scripts/atlas/flow-modes/mode-11-cache-flow.md then follow its instructions |
If a keyword matched above: Load the file NOW, then execute ONLY that mode's instructions. Do NOT continue reading this document.
If none of the above matched, check for these Tier 1 patterns:
| If arguments contain... | Mode to use |
|---|---|
| "who calls" OR "callers" OR "called by" | Mode 1: Reverse Tracing (see below) |
| "error" OR "failure" OR "exception" OR "fail" | Mode 2: Error Path (see below) |
| "data flow" OR "how is X calculated" OR "trace variable" | Mode 3: Data Flow (see below) |
| "event" OR "message" OR "pub/sub" OR "listener" | Mode 8: Event Tracing (see below) |
| "permission" OR "role" OR "auth" OR "access control" | Mode 10: Permission Flow (see below) |
| (none of the above) | Standard Flow Tracing (default) |
If --force NOT in arguments:
ls .sourceatlas/flows/{name}.md 2>/dev/nullIf explicit path given (e.g., "from OrderService.create()"): → Start tracing immediately
If flow description only (e.g., "checkout flow"): → Search for entry points:
grep -rn "{keyword}" --include="*.ts" --include="*.js" --include="*.py" src/ app/ lib/ 2>/dev/null | head -15
→ Present options if multiple matches
From entry point, trace each step:
For each step capture:
{Flow Name}
===========
Entry Point: {file}:{line}
┌──────┬──────────────────────────────┬───────────────────────┐
│ Step │ Operation │ Location │
├──────┼──────────────────────────────┼───────────────────────┤
│ 1 │ {description} │ {file}:{line} │
│ 2 │ {description} │ {file}:{line} │
└──────┴──────────────────────────────┴───────────────────────┘
Flow Diagram:
{entry}() → {step1}() → {step2}() → {step3}()
Notable Patterns:
├── 🔒 {pattern1}
├── 💾 {pattern2}
└── ⚠️ {pattern3}
───────────────────────────────────
📊 Mode: Standard | Confidence: ~85% | Depth: 5
───────────────────────────────────
Trigger: "who calls", "callers", "called by"
Find all callers of target function:
Who calls {function}?
=====================
Callers (N found):
├── {Caller1}() → {description}
│ 📍 {file}:{line}
├── {Caller2}() → {description}
│ 📍 {file}:{line}
└── {Caller3}() → {description}
📍 {file}:{line}
💡 Modifying {function} affects these {N} callers
Trigger: "error", "failure", "exception", "fail"
Trace failure scenarios:
{Flow} Error Paths
==================
1. {Step}
📍 {file}:{line}
⚠️ Failure → {ErrorType}
└── {what happens}
📌 Risk: {identified risk}
Trigger: "data flow", "how is X calculated", "trace variable"
Track data transformations:
Data Flow: {variable}
=====================
[Input] {source}
↓
1. {Transform} → {result}
📍 {file}:{line}
↓
[Output] {final}
Trigger: "event", "message", "pub/sub", "listener"
{EVENT} Tracing
===============
📤 Emission: {Publisher}() → emit("{EVENT}")
📍 {file}:{line}
📥 Listeners:
├── {Listener1}() → {action}
│ 📍 {file}:{line}
└── {Listener2}() → {action}
📍 {file}:{line}
Trigger: "permission", "role", "auth", "access control"
{Operation} by Role
===================
[ADMIN] → Full access
├── {check} 🔐 @RequireRole("ADMIN")
└── 📍 {file}:{line}
[USER] → Limited access
├── {check} 🔐 @CheckOwnership
└── 📍 {file}:{line}
Before output, verify:
test -f {path}grep -q "{method}" {file}Add to footer: ✅ Verified: [N] paths, [M] methods
After analysis completes, automatically:
mkdir -p .sourceatlas/flows.sourceatlas/flows/{name}.md💾 Saved to .sourceatlas/flows/{name}.mdIf --save is in arguments:
⚠️ --save is deprecated, auto-save is now default--save from arguments🗺️ SourceAtlas v3.0 │ Tiered Architecture