autoplan — for Claude Code autoplan, personal-athlete-agent, community, for Claude Code, ide skills, AUTO-GENERATED, SKILL.md.tmpl, directly, Regenerate, gen:skill-docs

v1.0.0

About this Skill

Ideal for AI agents that need <!-- auto-generated from skill.md.tmpl — do not edit directly --. autoplan is an AI agent skill for <!-- auto-generated from skill.md.tmpl — do not edit directly --.

Features

<!-- AUTO-GENERATED from SKILL.md.tmpl — do not edit directly --
<!-- Regenerate: bun run gen:skill-docs --
Preamble (run first)
ROOT=$(git rev-parse --show-toplevel 2 /dev/null)
GSTACK ROOT="$HOME/.codex/skills/gstack"

# Core Topics

nhattran998 nhattran998
[0]
[0]
Updated: 5/1/2026

Skill Overview

Start with fit, limitations, and setup before diving into the repository.

Ideal for AI agents that need <!-- auto-generated from skill.md.tmpl — do not edit directly --. autoplan is an AI agent skill for <!-- auto-generated from skill.md.tmpl — do not edit directly --.

Core Value

autoplan helps agents <!-- auto-generated from skill.md.tmpl — do not edit directly --. autoplan helps AI agents handle repository-specific developer workflows with documented implementation details.

Ideal Agent Persona

Ideal for AI agents that need <!-- auto-generated from skill.md.tmpl — do not edit directly --.

Capabilities Granted for autoplan

Applying <!-- AUTO-GENERATED from SKILL.md.tmpl — do not edit directly --
Applying <!-- Regenerate: bun run gen:skill-docs --
Applying Preamble (run first)

! Prerequisites & Limits

  • <!-- AUTO-GENERATED from SKILL.md.tmpl — do not edit directly --
  • Requires repository-specific context from the skill documentation
  • Works best when the underlying tools and dependencies are already configured

About The Source

The section below comes from the upstream repository. Use it as supporting material alongside the fit, use-case, and installation summary on this page.

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

Ideal for AI agents that need <!-- auto-generated from skill.md.tmpl — do not edit directly --. autoplan is an AI agent skill for <!-- auto-generated from skill.md.tmpl — do not edit directly --.

How do I install autoplan?

Run the command: npx killer-skills add nhattran998/personal-athlete-agent. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for autoplan?

Key use cases include: Applying <!-- AUTO-GENERATED from SKILL.md.tmpl — do not edit directly --, Applying <!-- Regenerate: bun run gen:skill-docs --, Applying Preamble (run first).

Which IDEs are compatible with autoplan?

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

<!-- AUTO-GENERATED from SKILL.md.tmpl — do not edit directly --. Requires repository-specific context from the skill documentation. Works best when the underlying tools and dependencies are already configured.

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 nhattran998/personal-athlete-agent. 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 autoplan immediately in the current project.

Upstream Repository Material

The section below comes from the upstream repository. Use it as supporting material alongside the fit, use-case, and installation summary on this page.

Upstream Source

autoplan

Install autoplan, an AI agent skill for AI agent workflows and automation. Explore features, use cases, limitations, and setup guidance.

SKILL.md
Readonly
Upstream Repository Material
The section below comes from the upstream repository. Use it as supporting material alongside the fit, use-case, and installation summary on this page.
Upstream Source
<!-- AUTO-GENERATED from SKILL.md.tmpl — do not edit directly --> <!-- Regenerate: bun run gen:skill-docs -->

Preamble (run first)

bash
1_ROOT=$(git rev-parse --show-toplevel 2>/dev/null) 2GSTACK_ROOT="$HOME/.codex/skills/gstack" 3[ -n "$_ROOT" ] && [ -d "$_ROOT/.agents/skills/gstack" ] && GSTACK_ROOT="$_ROOT/.agents/skills/gstack" 4GSTACK_BIN="$GSTACK_ROOT/bin" 5GSTACK_BROWSE="$GSTACK_ROOT/browse/dist" 6GSTACK_DESIGN="$GSTACK_ROOT/design/dist" 7_UPD=$($GSTACK_BIN/gstack-update-check 2>/dev/null || .agents/skills/gstack/bin/gstack-update-check 2>/dev/null || true) 8[ -n "$_UPD" ] && echo "$_UPD" || true 9mkdir -p ~/.gstack/sessions 10touch ~/.gstack/sessions/"$PPID" 11_SESSIONS=$(find ~/.gstack/sessions -mmin -120 -type f 2>/dev/null | wc -l | tr -d ' ') 12find ~/.gstack/sessions -mmin +120 -type f -exec rm {} + 2>/dev/null || true 13_PROACTIVE=$($GSTACK_BIN/gstack-config get proactive 2>/dev/null || echo "true") 14_PROACTIVE_PROMPTED=$([ -f ~/.gstack/.proactive-prompted ] && echo "yes" || echo "no") 15_BRANCH=$(git branch --show-current 2>/dev/null || echo "unknown") 16echo "BRANCH: $_BRANCH" 17_SKILL_PREFIX=$($GSTACK_BIN/gstack-config get skill_prefix 2>/dev/null || echo "false") 18echo "PROACTIVE: $_PROACTIVE" 19echo "PROACTIVE_PROMPTED: $_PROACTIVE_PROMPTED" 20echo "SKILL_PREFIX: $_SKILL_PREFIX" 21source <($GSTACK_BIN/gstack-repo-mode 2>/dev/null) || true 22REPO_MODE=${REPO_MODE:-unknown} 23echo "REPO_MODE: $REPO_MODE" 24_LAKE_SEEN=$([ -f ~/.gstack/.completeness-intro-seen ] && echo "yes" || echo "no") 25echo "LAKE_INTRO: $_LAKE_SEEN" 26_TEL=$($GSTACK_BIN/gstack-config get telemetry 2>/dev/null || true) 27_TEL_PROMPTED=$([ -f ~/.gstack/.telemetry-prompted ] && echo "yes" || echo "no") 28_TEL_START=$(date +%s) 29_SESSION_ID="$$-$(date +%s)" 30echo "TELEMETRY: ${_TEL:-off}" 31echo "TEL_PROMPTED: $_TEL_PROMPTED" 32_EXPLAIN_LEVEL=$($GSTACK_BIN/gstack-config get explain_level 2>/dev/null || echo "default") 33if [ "$_EXPLAIN_LEVEL" != "default" ] && [ "$_EXPLAIN_LEVEL" != "terse" ]; then _EXPLAIN_LEVEL="default"; fi 34echo "EXPLAIN_LEVEL: $_EXPLAIN_LEVEL" 35_QUESTION_TUNING=$($GSTACK_BIN/gstack-config get question_tuning 2>/dev/null || echo "false") 36echo "QUESTION_TUNING: $_QUESTION_TUNING" 37mkdir -p ~/.gstack/analytics 38if [ "$_TEL" != "off" ]; then 39echo '{"skill":"autoplan","ts":"'$(date -u +%Y-%m-%dT%H:%M:%SZ)'","repo":"'$(basename "$(git rev-parse --show-toplevel 2>/dev/null)" 2>/dev/null || echo "unknown")'"}' >> ~/.gstack/analytics/skill-usage.jsonl 2>/dev/null || true 40fi 41for _PF in $(find ~/.gstack/analytics -maxdepth 1 -name '.pending-*' 2>/dev/null); do 42 if [ -f "$_PF" ]; then 43 if [ "$_TEL" != "off" ] && [ -x "$GSTACK_BIN/gstack-telemetry-log" ]; then 44 $GSTACK_BIN/gstack-telemetry-log --event-type skill_run --skill _pending_finalize --outcome unknown --session-id "$_SESSION_ID" 2>/dev/null || true 45 fi 46 rm -f "$_PF" 2>/dev/null || true 47 fi 48 break 49done 50eval "$($GSTACK_BIN/gstack-slug 2>/dev/null)" 2>/dev/null || true 51_LEARN_FILE="${GSTACK_HOME:-$HOME/.gstack}/projects/${SLUG:-u

Related Skills

Looking for an alternative to autoplan 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