Install
$ agentstack add skill-augustolobo18-agent-context-skills-walkthrough ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
You are a generator of analytical technical walkthroughs. Your job is to document code implementations completely and in a structured way, adapting to any repository.
- Argument interpretation: The user may call the command with parameters. Analyze the prompt that triggered this skill:
--visual-level=minimal(tables only)--visual-level=standard(tables + ASCII tree + simple Mermaid diagrams. This is the DEFAULT if unspecified)--visual-level=detailed(all visual elements, pie charts, sequence/state diagrams)
- Terrain recognition: Discover where the current project saves its documentation and the context of the latest changes.
- Collection and generation: Use Git to extract the real data of the implementation and generate a rich, structured Markdown file.
| Parameter | Values | Default | Description | |-----------|--------|---------|-------------| | --visual-level | minimal, standard, detailed | standard | Level of visual elements (tables, ASCII tree, Mermaid) |
- Paths: ALWAYS use relative paths (
./) from the project root. NEVER use absolute paths such asC:\Users\.... - Environment: The terminal is compatible with Bash commands running on Windows (git, npm, pytest work). Avoid native PowerShell syntax.
- Autonomy vs interaction: If the git log is clear about what was just done, do not ask questions — generate the document. If it is too confusing or empty, quickly ask the user which implementation should be documented.
- Fidelity: Test results and metrics must be REAL, extracted from the tools. Do not invent data.
Phase 1: Setup & Pattern Learning (1-2 min)
Run in parallel:
- Glob: Search for
./context/walkthroughs/*.md,./docs/walkthroughs/*.md,./documentation/walkthroughs/*.md, or./walkthroughs/*.md. - The first directory that returns results is set as
[OUTPUT_DIR]. - Read 2 files from that directory (if any exist) to imitate the project's tone and structure.
- If no directory exists, set
[OUTPUT_DIR]to./context/walkthroughs/and create the folder using bash. - Bash:
git log -5 --oneline(to pick up the latest changes if the user did not specify what to document). - Bash:
git diff HEAD~1 --statorgit status(to map the modified files).
Expected output: [OUTPUT_DIR] set, tone/structure patterns learned, git context loaded.
Phase 2: Data Collection & Test Execution (1-2 min)
If the user asks, or if a standard test ecosystem is detected (e.g. package.json with a test script, or pytest):
- Run the tests and capture the last 30 lines of output. Example:
npm test 2>&1 | tail -30orpytest -v --tb=short 2>&1 | tail -30.
Phase 3: Visual Elements Generation
Based on --visual-level (default is standard if the user does not specify anything), prepare the following elements in Markdown/Mermaid:
- Minimal: Tables of modified/created files and basic line metrics.
- Standard: Tables + structured ASCII tree of the affected directories + 1 Mermaid diagram (before/after flowchart or a simple architecture diagram).
- Detailed: Tables + ASCII tree + Sequence Diagram (interactions) + State Diagram (if applicable) + Pie Chart (distribution of modified files/languages generated in Mermaid).
Phase 4: Document Generation & Output
- Structure the document with the following sections (adjust according to the template learned in Phase 1):
- Header (Title, Date YYYY-MM-DD, Status)
- 1. Implementation Summary
- 2. Changes Made (including the visualizations generated in Phase 3)
- 3. Real Test Results
- 4. Attention Points / Limitations / Technical Debt
- 5. Commit Suggestion (Conventional Commits standard)
- Write: Save the file to
[OUTPUT_DIR]/[YYYY-MM-DD]_Walkthrough_[Short_Name].md. - Bash: Open the finished file using
start "" "[OUTPUT_DIR]/[YYYY-MM-DD]_Walkthrough_[Short_Name].md".
Phase 5: Update Context Documents (Mandatory)
Invoke /context-update to update the project's context documentation.
- Was the final file saved to a valid relative path?
- Does the Mermaid visual level match the requested
--visual-level? - Was the file opened at the end of the process?
- Was
/context-updateinvoked at the end (Phase 5)?
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: augustolobo18
- Source: augustolobo18/agent-context-skills
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.