load — for Claude Code community, for Claude Code, ide skills, handoff, resume, CLAUDE.md, ROADMAP.md, BACKLOG.md, git log --oneline -15, git status -sb

v1.0.0

About this Skill

Ideal for AI agents that need read state in this order. load is an AI agent skill for read state in this order.

Features

Read state in this order
CLAUDE.md — already auto-loaded; reaffirm the phase-gate + honesty conventions are top-of-mind
ROADMAP.md "Current status" — what phase, what was done, next action
BACKLOG.md — deferred items (don't act on them)
.claude/session-state.md if it exists — the previous session's task snapshot

# Core Topics

Ayberkone Ayberkone
[0]
[0]
Updated: 4/25/2026

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reference-Only Page Review Score: 8/11

This page remains useful for teams, 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 Locale and body language aligned
Review Score
8/11
Quality Score
39
Canonical Locale
en
Detected Body Locale
en

Ideal for AI agents that need read state in this order. load is an AI agent skill for read state in this order.

Core Value

load helps agents read state in this order. TANIK is a reference implementation of a multi-modal biometric kiosk # /load Run this at the start of a fresh chat after a previous session ran /handoff (and the user has typed /clear to wipe context). This AI agent skill supports Claude Code, Cursor

Ideal Agent Persona

Ideal for AI agents that need read state in this order.

Capabilities Granted for load

Applying Read state in this order
Applying CLAUDE.md — already auto-loaded; reaffirm the phase-gate + honesty conventions are top-of-mind
Applying ROADMAP.md "Current status" — what phase, what was done, next action

! Prerequisites & Limits

  • BACKLOG.md — deferred items (don't act on them)
  • READ-ONLY in this command. No Edit, no Write, no Bash that mutates state.
  • If ROADMAP.md "Current status" looks stale or wrong, say so explicitly — don't paper over it.

Why this page is reference-only

  • - The underlying skill quality score is below the review floor.

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 load?

Ideal for AI agents that need read state in this order. load is an AI agent skill for read state in this order.

How do I install load?

Run the command: npx killer-skills add Ayberkone/tanik/load. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for load?

Key use cases include: Applying Read state in this order, Applying CLAUDE.md — already auto-loaded; reaffirm the phase-gate + honesty conventions are top-of-mind, Applying ROADMAP.md "Current status" — what phase, what was done, next action.

Which IDEs are compatible with load?

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 load?

BACKLOG.md — deferred items (don't act on them). READ-ONLY in this command. No Edit, no Write, no Bash that mutates state.. If ROADMAP.md "Current status" looks stale or wrong, say so explicitly — don't paper over it..

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 Ayberkone/tanik/load. 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 load 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

load

Install load, 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

/load

Run this at the start of a fresh chat after a previous session ran /handoff (and the user has typed /clear to wipe context). Bootstraps fast and stops before doing any real work.

Naming note. Originally called /resume, but Claude Code has a built-in /resume that opens a session picker — the built-in always wins, so the project command never fires. Renamed to /load to avoid the collision.

Steps

1. Read state in this order

  1. CLAUDE.md — already auto-loaded; reaffirm the phase-gate + honesty conventions are top-of-mind
  2. ROADMAP.md "Current status" — what phase, what was done, next action
  3. BACKLOG.md — deferred items (don't act on them)
  4. .claude/session-state.md if it exists — the previous session's task snapshot

2. Reconstruct the working picture

Run in parallel:

  • git log --oneline -15 — recent commits, confirm against ROADMAP claims
  • git status -sb — should be clean (the previous /handoff refused otherwise)
  • git rev-parse HEAD — confirm current commit matches the one ROADMAP claims

If reality doesn't match what ROADMAP.md "Current status" or .claude/session-state.md claims (e.g., commits exist that the state file doesn't mention, or vice versa), stop and tell the user. Do not assume the state file or your reading is correct — surface the divergence so the user can resolve it.

3. Rebuild the TaskList

For every task listed in .claude/session-state.md (if present), recreate it via TaskCreate so the session-local task tracker matches what's pending. Preserve the [PHASE] prefix and the description/activeForm.

If .claude/session-state.md does not exist (fresh start without prior /handoff), skip this step — the user is starting clean.

4. Produce the load summary

Print, in five sentences:

  1. What TANIK is (one sentence — pulled from CLAUDE.md / README).
  2. Current phase + last commit SHA + subject.
  3. What was done last session (one or two bullet-style points if needed, in one sentence).
  4. What's pending and why it's pending (deploy decision? user action? in-flight bug?).
  5. The very next concrete action — name the task, name the file or files involved.

Then ask: "Continue with that, or different?"

5. Wait

Do not start any tool calls beyond the read-only ones above until the user replies. The point of /load is to load context, not to do work.

Rules

  • READ-ONLY in this command. No Edit, no Write, no Bash that mutates state.
  • If ROADMAP.md "Current status" looks stale or wrong, say so explicitly — don't paper over it.
  • If the user asks "what was the last thing you did?", trust git history over the state file (history is canonical, state file is a hint).
  • The TaskList rebuild is best-effort. If a task description in .claude/session-state.md doesn't make sense in the current context, ask before recreating it verbatim.

Related Skills

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

View All

openclaw-release-maintainer

Logo of openclaw
openclaw

openclaw-release-maintainer is an AI agent skill for openclaw release maintainer.

333.8k
0
AI

widget-generator

Logo of f
f

Generate customizable widget plugins for the prompts.chat feed system

149.6k
0
AI

flags

Logo of vercel
vercel

flags is an AI agent skill for use this skill when adding or changing framework feature flags in next.js internals.

138.4k
0
Browser

pr-review

Logo of pytorch
pytorch

pr-review is an AI agent skill for pytorch pr review skill.

98.6k
0
Developer