MCP HubMCP Hub
Volver a habilidades

read-continue-here

pjt222
Actualizado 6 days ago
17 vistas
17
2
17
Ver en GitHub
Diseñoaiautomation

Acerca de

Esta habilidad detecta y lee automáticamente un archivo `CONTINUE_HERE.md` al inicio de la sesión para retomar el trabajo de una sesión interrumpida anteriormente. Analiza la transferencia estructurada, confirma el plan de reanudación con el usuario y realiza una limpieza tras su consumo. Úsela al reiniciar después de una interrupción o para configurar la detección automática de continuación mediante enlaces de SessionStart.

Instalación rápida

Claude Code

Recomendado
Principal
npx skills add pjt222/agent-almanac -a claude-code
Comando PluginAlternativo
/plugin add https://github.com/pjt222/agent-almanac
Git CloneAlternativo
git clone https://github.com/pjt222/agent-almanac.git ~/.claude/skills/read-continue-here

Copia y pega este comando en Claude Code para instalar esta habilidad

Documentación

讀續

讀續檔、承前任也。

  • 啟新會、根存 CONTINUE_HERE.md→用
  • SessionStart 鉤注入續脈→用
  • 啟身、察前會跡→用
  • 設自動續察(一次基設)→用

  • :項目錄(默當前)
  • :基設乎(鉤+CLAUDE.md)
  • :用畢刪乎(默是)

一:察讀

查根 CONTINUE_HERE.md

ls -la CONTINUE_HERE.md 2>/dev/null

無→雅退。

存→讀容。析五段:Objective、Completed、In Progress、Next Steps、Context。取首行時、枝。

得:檔讀、段析、前會態明。

敗:存而殘(缺段、空)→視為部分號,取所存、告用何缺。

二:察鮮

時與今較:

# File modification time
stat -c '%Y' CONTINUE_HERE.md 2>/dev/null || stat -f '%m' CONTINUE_HERE.md
# Current time
date +%s

分鮮:

  • (< 24 時、同枝):可直行
  • (> 24 時或異枝):先告用
  • (後存新提交):他人於交後動

察枝合:

git branch --show-current
git log --oneline --since="$(stat -c '%Y' CONTINUE_HERE.md | xargs -I{} date -d @{} --iso-8601=seconds)" 2>/dev/null

得:鮮分(鮮、舊、越)有據。

敗:非庫→略枝、提交察。獨憑檔頭時。

三:摘確續

簡示續態於用:

  • 「前會旨:[Objective]」
  • 「已畢:[摘]」
  • 「進行:[摘]」
  • 「擬下:[Next Steps 第一]」

舊或越→示據、問續否抑新起。

Next Steps 標 **[USER]**→明揭,需用決方行。

得:用確續計(或調)。代有明命。

敗:用云「新起」「忽彼檔」→應、不顧續脈。問刪檔以免後混。

四:行交

由 Next Steps 一始(或用所指):

  • 引 In Progress 解半態
  • 用 Context 避重蹈敗法
  • 視 Completed 已畢——非用問勿復驗

得:代行正務、有續檔導引。

敗:Next Steps 含糊、In Progress 不明→問用,勿猜。

五:清

交用畢、工已起→刪 CONTINUE_HERE.md:

rm CONTINUE_HERE.md

舊續檔致後會混。

得:檔除、根淨。

敗:用欲留(如會中參)→留之,告會末必刪以免次會復用。

六:設 SessionStart 鉤(可)

未設→立自讀於會啟。

建鉤本:

mkdir -p ~/.claude/hooks/continue-here

cat > ~/.claude/hooks/continue-here/read-continuation.sh << 'SCRIPT'
#!/bin/bash
# SessionStart hook: inject CONTINUE_HERE.md into session context
# OS-aware: works on native Linux, WSL, macOS, and Windows (Git Bash/MSYS)
set -uo pipefail

# --- Platform detection ---
detect_platform() {
  case "$(uname -s)" in
    Darwin) echo "mac" ;;
    Linux)
      if grep -qi microsoft /proc/version 2>/dev/null; then
        echo "wsl"
      else
        echo "linux"
      fi ;;
    MINGW*|MSYS*|CYGWIN*) echo "windows" ;;
    *) echo "unknown" ;;
  esac
}
PLATFORM=${PLATFORM:-$(detect_platform)}

CONTINUE_FILE="$PWD/CONTINUE_HERE.md"

if [ ! -f "$CONTINUE_FILE" ]; then
  exit 0
fi

# Strip CRLF (files on NTFS often have Windows line endings)
CONTENT=$(sed 's/\r$//' "$CONTINUE_FILE")

# JSON-escape: prefer jq, fall back to portable awk
if command -v jq >/dev/null 2>&1; then
  ESCAPED=$(printf '%s' "$CONTENT" | jq -Rsa .)
else
  ESCAPED=$(printf '%s' "$CONTENT" | awk '
    BEGIN { ORS=""; print "\"" }
    {
      gsub(/\\/, "\\\\")
      gsub(/"/, "\\\"")
      gsub(/\t/, "\\t")
      if (NR > 1) print "\\n"
      print
    }
    END { print "\"" }
  ')
fi

cat << EOF
{"hookSpecificOutput":{"sessionStartContext":{"additionalContext":$ESCAPED}}}
EOF
SCRIPT

chmod +x ~/.claude/hooks/continue-here/read-continuation.sh

~/.claude/settings.json SessionStart 鉤陣:

{
  "type": "command",
  "command": "~/.claude/hooks/continue-here/read-continuation.sh",
  "timeout": 5
}

得:鉤本存、可執、注於 settings.json。次會啟、若 CONTINUE_HERE.md 存→容入會脈。

敗:察 settings.json 編後仍合 JSON。手測鉤:cd /your/project && ~/.claude/hooks/continue-here/read-continuation.sh。本退用 awk 若無 jq,故 jq 宜而非必。

七:增 CLAUDE.md 命(可)

於項 CLAUDE.md 增簡命使 Claude 解檔旨:

## Session Continuity

If `CONTINUE_HERE.md` exists in the project root, read it at session start. It contains a structured handoff from a prior session: objective, completed work, in-progress state, next steps, and context. Act on it — acknowledge the continuation, summarize prior state, and propose resuming from the Next Steps section. If the file is older than 24 hours, flag this to the user before proceeding. After the handoff is consumed, the file can be deleted.

得:CLAUDE.md 含命。後會雖無鉤亦讀行 CONTINUE_HERE.md。

敗:CLAUDE.md 不存→建之,唯此段。檔過長→置近頂以免截斷。

  • CONTINUE_HERE.md 已察(或缺已雅理)
  • 鮮已察(時、枝、後提交)
  • 續計示用、用已確
  • 工自正 Next Steps 始
  • 用畢檔已清
  • (可)SessionStart 鉤本存可執
  • (可)CLAUDE.md 含續命

  • 未確而行:必示續計於用。雖鮮,意或變
  • 盲信舊檔:> 24 時或異枝→建議非命。必察鮮
  • 忽 Context:最值常為敗法。略則重蹈死路
  • 忘清:用畢留 CONTINUE_HERE.md→次會混、復行之
  • 疑 Completed:非用問勿復畢工。信前會察

  • write-continue-here — 補:會末書續檔
  • bootstrap-agent-identity — 全身重構,含續察為一啟發
  • manage-memory — 跨會持知(補此瞬交)
  • write-claude-md — 項命,可選續導所居

Repositorio GitHub

pjt222/agent-almanac
Ruta: i18n/wenyan-ultra/skills/read-continue-here
0
agentsagentskillsai-assisted-developmentclaude-codeskillsteams

Habilidades relacionadas

executing-plans

Diseño

Utilice la habilidad executing-plans cuando tenga un plan de implementación completo para ejecutar en lotes controlados con puntos de revisión. Esta habilidad carga y revisa críticamente el plan, luego ejecuta tareas en pequeños lotes (por defecto 3 tareas) mientras reporta el progreso entre cada lote para la revisión del arquitecto. Esto asegura una implementación sistemática con puntos de control de calidad integrados.

Ver habilidad

requesting-code-review

Diseño

Esta habilidad despacha un subagente revisor de código para analizar los cambios en el código frente a los requisitos antes de proceder. Debe usarse después de completar tareas, implementar funciones principales o antes de fusionar con la rama principal. La revisión ayuda a detectar problemas de forma temprana al comparar la implementación actual con el plan original.

Ver habilidad

connect-mcp-server

Diseño

Esta habilidad proporciona una guía integral para que los desarrolladores conecten servidores MCP a Claude Code mediante transportes HTTP, stdio o SSE. Cubre la instalación, configuración, autenticación y seguridad para integrar servicios externos como GitHub, Notion y APIs personalizadas. Úsala al configurar integraciones MCP, al configurar herramientas externas o al trabajar con el Protocolo de Contexto del Modelo de Claude.

Ver habilidad

web-cli-teleport

Diseño

Esta habilidad ayuda a los desarrolladores a elegir entre las interfaces web y CLI de Claude Code mediante el análisis de tareas, y luego permite la teletransportación fluida de sesiones entre estos entornos. Optimiza el flujo de trabajo gestionando el estado y el contexto de la sesión al cambiar entre web, CLI o móvil. Úsala para proyectos complejos que requieren diferentes herramientas en varias etapas.

Ver habilidad