code-tour — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited code-tour (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
When generating guided explorations of a codebase to help someone understand its architecture, data flow, or implementation patterns. Use when onboarding new team members, documenting complex subsystems, or creating learning paths through unfamiliar code.
A code tour is NOT a README or API reference — it is a narrative journey through source files in a deliberate order, with annotations explaining the "why" at each stop, building understanding progressively.
main, index, app, CLI handler| Strategy | Best for | Approach |
|---|---|---|
| Entry-point-first | Full system overview | Start at main, trace outward |
| Data-flow | APIs, pipelines | Follow a request from ingress to response |
| Layer-by-layer | Layered architecture | Config → Entry → Core → Utils → Edge |
| Feature-slice | Specific feature | All files involved in one user story |
| Dependency-graph | Library/framework | Follow import tree breadth-first |
Stop format (mandatory for each stop):
## Stop N: [Descriptive Title]
**File:** `src/path/to/file.ts` (lines 42-87)
**Why this file matters:**
[1-2 sentences on this file's role in the system]
**What to notice:**
- [Key pattern, design decision, or technique used here]
- [Relationship to previous stop]
- [Any non-obvious behavior or convention]
**Key code:**// The critical section, with inline annotations function handleRequest(ctx: Context) { // Notice: middleware chain is resolved here, not at registration time const pipeline = ctx.middleware.resolve(); // ... }
**Checkpoint:** After this stop, you should understand:
- [Concrete understanding goal 1]
- [Concrete understanding goal 2]Progressive complexity rules:
Annotation principles:
Connecting stops:
## Tour Summary
**Total stops:** N
**Estimated reading time:** ~X minutes
**Key takeaways:**
1. [Most important architectural insight]
2. [Critical pattern used throughout]
3. [Key design decision and its rationale]
**Suggested next tours:**
- [Related subsystem that builds on this understanding]
- [Deeper dive into one area touched here]TOUR-[name].md in the project root or docs/tours/Before marking a code tour task done:
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.