Nm Scribe Tech Tutorial

v1.0.0

Plan, draft, and refine technical tutorials for developers

0· 123·1 current·1 all-time

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for athola/nm-scribe-tech-tutorial.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "Nm Scribe Tech Tutorial" (athola/nm-scribe-tech-tutorial) from ClawHub.
Skill page: https://clawhub.ai/athola/nm-scribe-tech-tutorial
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Config paths to check: night-market.scribe:shared, night-market.scribe:slop-detector
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install nm-scribe-tech-tutorial

ClawHub CLI

Package manager switcher

npx clawhub@latest install nm-scribe-tech-tutorial
Security Scan
Capability signals
CryptoCan make purchases
These labels describe what authority the skill may exercise. They are separate from suspicious or malicious moderation verdicts.
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
The name/description (drafting technical tutorials) matches the included modules and runtime instructions. The only declared requirements are two config paths (night-market.scribe:shared and night-market.scribe:slop-detector), which are consistent with the SKILL.md referencing a slop detector and shared scribe modules. No unrelated binaries, environment variables, or external services are requested.
Instruction Scope
The SKILL.md instructs the agent to write outlines, draft code examples, and to 'run' and verify snippets in a real environment. This behavior is coherent for a tutorial-authoring skill but implies the agent (or user following the skill) will execute commands/code and capture outputs. There are no instructions to read unrelated system files or to send data to external endpoints. Users should review any example code before executing it and prefer isolated/test environments (containers, VMs) when running untrusted snippets.
Install Mechanism
Instruction-only skill with no install spec and no code files. This minimizes disk/write risk—there is nothing being downloaded or executed by an installer.
Credentials
The skill requires no environment variables or credentials. The two declared config paths are internal skill configuration hooks (shared module and slop-detector) and are proportional to the stated functionality.
Persistence & Privilege
always:false and no install step; the skill does not request permanent or elevated presence. It does reference other skills (scribe:slop-detector) which will be invoked as part of its workflow; autonomous invocation is allowed by default but is normal for skills and not excessive here.
Assessment
This skill is coherent for authoring developer tutorials and doesn't ask for credentials or install code. The main risk is executing example code: before running any snippets, inspect them and run them in isolated environments (container, VM) if they are untrusted. Also verify you trust the referenced companion skills (e.g., scribe:slop-detector) because the skill integrates with them. If you want an extra safety layer, disable autonomous invocation for agents or review actions before they run.

Like a lobster shell, security has layers — review code before you run it.

Runtime requirements

🦞 Clawdis
Confignight-market.scribe:shared, night-market.scribe:slop-detector
latestvk97ay8zntcb36gdb5qtypfqd0h8575k8
123downloads
0stars
1versions
Updated 1w ago
v1.0.0
MIT-0

Night Market Skill — ported from claude-night-market/scribe. For the full experience with agents, hooks, and commands, install the Claude Code plugin.

Tech Tutorial

A good technical tutorial has one goal: move a reader from not knowing how to do something to being able to do it. That requires working code, concrete steps, and honest acknowledgment of where things go wrong. This skill guides you through outlining, drafting, and verifying a tutorial that meets that standard.

When To Use

  • Writing a getting-started guide for a library, CLI tool, or API
  • Creating a step-by-step walkthrough that readers follow at a terminal
  • Explaining a technical concept through a hands-on exercise
  • Producing a how-to that complements API reference documentation

When NOT To Use

  • Generating API reference docs (use scribe:doc-generator)
  • Cleaning up existing prose (use scribe:slop-detector)
  • Producing high-level architecture overviews without runnable steps
  • Writing conceptual essays without hands-on components

Methodology

Step 1: Scope and Audience

Before writing a single line, answer these questions:

  • Who is this for? (experience level, assumed prior knowledge)
  • What will they build or accomplish by the end?
  • What is the single prerequisite the reader must have installed?
  • What is explicitly out of scope?

Write these answers down as a header block in the draft. If you cannot answer the "what will they accomplish" question in one sentence, the scope is too broad.

Step 2: Outline

Load: @modules/outline-structure.md

Produce a section-by-section outline before drafting prose. Each section entry must include a one-line description of what the reader does or learns in that section. See the outline module for the standard section order and length targets per section type.

Step 3: Draft Code Examples First

Load: @modules/code-examples.md

Write the code before the prose. Each snippet must run against a real environment before it appears in the tutorial. Annotate only the non-obvious lines. See the code examples module for formatting and error-handling rules.

Step 4: Draft Prose Around the Code

Prose exists to explain what the code does and why. Follow these rules:

  • One paragraph per step: what to run, what it does, what to expect
  • State the expected output after each command block
  • Use second person ("you") consistently throughout
  • Do not narrate what the reader will do next; just present the next step

Step 5: Build Complexity Gradually

Load: @modules/progressive-complexity.md

Start with the minimal working example. Introduce variations and edge cases only after the baseline works. See the progressive complexity module for the layering rules and pacing guidance.

Step 6: Slop Check

After drafting, run:

Skill(scribe:slop-detector)

Fix all tier-1 findings before proceeding. Pay particular attention to:

  • Tier-1 vocabulary slop (see scribe:slop-detector word lists)
  • Tricolon adjective clusters ("fast, efficient, and reliable")
  • Participial tail-loading (sentences ending with ", enabling ...")

Step 7: Quality Gate

Verify the completed tutorial against this checklist:

  • All code blocks tested and produce the stated output
  • Prerequisites section lists exact versions where relevant
  • Every step states the expected result
  • Troubleshooting section covers at least two common failure modes
  • No tier-1 slop words
  • Em dash count is under 2 per 1000 words
  • Bullet ratio is under 40%
  • Line length wraps at 80 characters

Required TodoWrite Items

  1. tech-tutorial:scope-defined - Audience, goal, and out-of-scope noted
  2. tech-tutorial:outline-approved - Section outline confirmed
  3. tech-tutorial:code-tested - All snippets verified against a real env
  4. tech-tutorial:prose-drafted - Walkthrough text written
  5. tech-tutorial:slop-scanned - Slop detector passed
  6. tech-tutorial:quality-verified - Quality gate checklist cleared
  7. tech-tutorial:user-approved - Final approval received

Module Reference

  • See modules/outline-structure.md for section order and length targets
  • See modules/code-examples.md for snippet formatting and annotation rules
  • See modules/progressive-complexity.md for pacing and layering guidance

Integration with Other Skills

SkillWhen to Use
scribe:slop-detectorAfter drafting, before approval
scribe:doc-generatorFor companion API reference sections
scribe:style-learnerTo match an existing tutorial voice

Exit Criteria

  • Tutorial outline confirmed before drafting begins
  • All code snippets tested in a real environment
  • Slop score below 1.5 (clean)
  • Quality gate checklist passed
  • User approval received

Comments

Loading comments...