gen-code-tour — for Claude Code gen-code-tour, littlerae, community, for Claude Code, ide skills, technical-writer, selection, Generation, Problem, developers

v1.0.0

このスキルについて

適した場面: Ideal for AI agents that need code tour generation. ローカライズされた概要: Versión de escritorio del Diccionario de la RAE # Code Tour Generation Problem New developers joining a project face a steep learning curve. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

機能

Code Tour Generation
New developers joining a project face a steep learning curve. Documentation describes
what the system does but rarely provides a guided path through how the code
implements it. Reading files in alphabetical order or random discovery leads to
fragmented understanding. Developers need a curated path through the codebase that

# Core Topics

klod68 klod68
[1]
[0]
Updated: 4/8/2026

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reference-Only Page Review Score: 10/11

This page remains useful for operators, but Killer-Skills treats it as reference material instead of a primary organic landing page.

Original recommendation layer Concrete use-case guidance Explicit limitations and caution Quality floor passed for review
Review Score
10/11
Quality Score
70
Canonical Locale
en
Detected Body Locale
en

適した場面: Ideal for AI agents that need code tour generation. ローカライズされた概要: Versión de escritorio del Diccionario de la RAE # Code Tour Generation Problem New developers joining a project face a steep learning curve. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

このスキルを使用する理由

推奨ポイント: gen-code-tour helps agents code tour generation. Versión de escritorio del Diccionario de la RAE # Code Tour Generation Problem New developers joining a project face a steep learning curve. This AI agent skill

おすすめ

適した場面: Ideal for AI agents that need code tour generation.

実現可能なユースケース for gen-code-tour

ユースケース: Applying Code Tour Generation
ユースケース: Applying New developers joining a project face a steep learning curve. Documentation describes
ユースケース: Applying what the system does but rarely provides a guided path through how the code

! セキュリティと制限

  • 制約事項: fragmented understanding. Developers need a curated path through the codebase that
  • 制約事項: A new developer is joining the team and needs to understand the architecture
  • 制約事項: A code review involves changes across multiple modules that reviewers need context for

Why this page is reference-only

  • - Current locale does not satisfy the locale-governance contract.

Source Boundary

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

After The Review

Decide The Next Action Before You Keep Reading Repository Material

Killer-Skills should not stop at opening repository instructions. It should help you decide whether to install this skill, when to cross-check against trusted collections, and when to move into workflow rollout.

Labs Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

FAQ & Installation Steps

These questions and steps mirror the structured data on this page for better search understanding.

? Frequently Asked Questions

What is gen-code-tour?

適した場面: Ideal for AI agents that need code tour generation. ローカライズされた概要: Versión de escritorio del Diccionario de la RAE # Code Tour Generation Problem New developers joining a project face a steep learning curve. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

How do I install gen-code-tour?

Run the command: npx killer-skills add klod68/littlerae/gen-code-tour. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for gen-code-tour?

Key use cases include: ユースケース: Applying Code Tour Generation, ユースケース: Applying New developers joining a project face a steep learning curve. Documentation describes, ユースケース: Applying what the system does but rarely provides a guided path through how the code.

Which IDEs are compatible with gen-code-tour?

This skill is compatible with Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer. Use the Killer-Skills CLI for universal one-command installation.

Are there any limitations for gen-code-tour?

制約事項: fragmented understanding. Developers need a curated path through the codebase that. 制約事項: A new developer is joining the team and needs to understand the architecture. 制約事項: A code review involves changes across multiple modules that reviewers need context for.

How To Install

  1. 1. Open your terminal

    Open the terminal or command line in your project directory.

  2. 2. Run the install command

    Run: npx killer-skills add klod68/littlerae/gen-code-tour. The CLI will automatically detect your IDE or AI agent and configure the skill.

  3. 3. Start using the skill

    The skill is now active. Your AI agent can use gen-code-tour immediately in the current project.

! Reference-Only Mode

This page remains useful for installation and reference, but Killer-Skills no longer treats it as a primary indexable landing page. Read the review above before relying on the upstream repository instructions.

Upstream Repository Material

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

Upstream Source

gen-code-tour

Install gen-code-tour, an AI agent skill for AI agent workflows and automation. Review the use cases, limitations, and setup path before rollout.

SKILL.md
Readonly
Upstream Repository Material
The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.
Supporting Evidence

Code Tour Generation

Problem

New developers joining a project face a steep learning curve. Documentation describes what the system does but rarely provides a guided path through how the code implements it. Reading files in alphabetical order or random discovery leads to fragmented understanding. Developers need a curated path through the codebase that builds understanding progressively.

When to Use

  • A new developer is joining the team and needs to understand the architecture
  • A complex feature spans 5+ files and benefits from a guided walkthrough
  • A code review involves changes across multiple modules that reviewers need context for
  • The project has a Clean Architecture or CQRS structure that newcomers find disorienting
  • You want to document how a request flows from endpoint to database

When NOT to use:

  • The codebase has fewer than 10 files — a README is sufficient
  • You need API documentation — use the technical-writer agent instead
  • The tour would be a single file — just add inline comments

Instruction

Generate a VSCode CodeTour file (.tours/{tour-name}.tour) that guides the reader through the codebase with progressive disclosure.

Tour Structure

Every tour follows the Concentric Circles pattern — start at the outermost layer (entry point, configuration) and spiral inward toward the core domain logic:

1. Entry point (Program.cs, endpoint, hub)
2. Configuration (DI registration, options)
3. Application layer (handler, pipeline)
4. Domain layer (entity, value object, domain service)
5. Infrastructure layer (repository, external service)
6. Cross-cutting (middleware, filters, interceptors)

Step Types

Step TypeUseCodeTour Properties
DirectoryExplain a folder's purpose and contentsdirectory: "src/Domain/"
FileExplain a file's role in the architecturefile: "src/Domain/Order.cs"
LinePoint to a specific code constructfile + line
SelectionHighlight a range of codefile + selection (start/end)

Step Content Guidelines

  • Title: Short, descriptive — what this step teaches (not what the code does)
  • Description: 2-4 sentences explaining the architectural significance
  • Progressive: Each step builds on the previous one — never reference concepts not yet introduced
  • Actionable: End each step with what to look for or understand before moving on

Output Format

Generate a JSON file following the CodeTour schema:

json
1{ 2 "$schema": "https://aka.ms/codetour-schema", 3 "title": "{Tour Title}", 4 "description": "{One-sentence purpose of this tour}", 5 "steps": [ 6 { 7 "title": "Step 1: Entry Point", 8 "description": "This is where requests enter the system...", 9 "file": "src/WebApi/Program.cs", 10 "line": 42 11 }, 12 { 13 "title": "Step 2: DI Registration", 14 "description": "All services are registered here...", 15 "directory": "src/WebApi/Extensions/" 16 } 17 ] 18}

Tour Categories

Generate tours for these standard scenarios:

CategoryStarting PointKey Stops
Architecture OverviewSolution structureLayer boundaries, dependency flow, key abstractions
Request FlowEndpoint/ControllerValidation → Handler → Domain → Repository → Response
Domain ModelAggregate rootEntities, value objects, domain events, invariants
Testing StrategyTest project structureUnit → Integration → test helpers, builders
Configurationappsettings.jsonOptions classes, validation, DI wiring

Quality Gates

  • Every tour must have ≥ 5 steps and ≤ 25 steps
  • Every step must reference a real file/directory that exists in the project
  • No two consecutive steps should be in the same file (vary the perspective)
  • The first step must orient the reader (where are we, what will we learn)
  • The last step must summarize what was learned and suggest next exploration

Output Schema

  1. The .tour JSON file content
  2. Suggested file path: .tours/{category}-{subject}.tour
  3. A summary of what the tour covers and its target audience

See Also

  • scaffold-clean-arch — Clean Architecture project structure (tour often follows this layout)
  • gen-copilot-instructions — Documentation generation for AI context files

関連スキル

Looking for an alternative to gen-code-tour or another community skill for your workflow? Explore these related open-source skills.

すべて表示

openclaw-release-maintainer

Logo of openclaw
openclaw

Your own personal AI assistant. Any OS. Any Platform. The lobster way. 🦞

333.8k
0
AI

widget-generator

Logo of f
f

カスタマイズ可能なウィジェットプラグインをprompts.chatのフィードシステム用に生成する

149.6k
0
AI

flags

Logo of vercel
vercel

React フレームワーク

138.4k
0
ブラウザ

pr-review

Logo of pytorch
pytorch

Pythonにおけるテンソルと動的ニューラルネットワーク(強力なGPUアクセラレーション)

98.6k
0
開発者