planning-with-files-es

仓库创建 2026年1月3日最近提交 2 天前SkillHot 收录 20 天前
▸ 精选理由

适合需要长期跟踪与多步操作的项目规划与会话恢复。

▸ 风险提示

会在本地读写文件并可能运行恢复命令,需注意文件与执行权限

这个 Skill 做什么

用持久化 Markdown 文件规划、拆解并跟踪复杂多步任务的进度。

用持久化的 Markdown 文件把复杂多步的工作拆成可执行的计划、记录结论并持续跟踪进度。会生成 task_plan.md、findings.md 和 progress.md,适合需要多轮工具调用或长期跟踪的项目和研究任务。特别之处是把“工作记忆”放到磁盘上,能在 /clear 后恢复上一次会话,方便断点续做。

▸ 展开 SKILL.md 英文原文

Sistema de planificación basado en archivos estilo Manus para organizar y rastrear el progreso de tareas complejas. Crea task_plan.md, findings.md y progress.md. Cuando el usuario solicita planificación, desglose u organización de proyectos multipaso, tareas de investigación o trabajos que requieren más de 5 llamadas a herramientas. Soporta recuperación automática de sesión tras /clear. Palabras clave: planificación de tareas, planificación de proyecto, crear plan de trabajo, analizar tareas, organizar proyecto, seguimiento de progreso, planificación multipaso, ayúdame a planificar, desglosar proyecto

自动化集成文件规划任务拆解Markdown 记忆通用
2.6w
Stars
2.2k
Forks
18
仓库内 Skill
+860
7 日增星
安装 / 使用
给你的 Agent 一句话(通用)
帮我安装这个 skill:https://raw.githubusercontent.com/OthmanAdi/planning-with-files/master/skills/planning-with-files-es/SKILL.md
或 curl 直取 SKILL.md
curl -fsSL "https://raw.githubusercontent.com/OthmanAdi/planning-with-files/master/skills/planning-with-files-es/SKILL.md"
SKILL.MD 节选查看完整文件 ↗
# Sistema de Planificación con Archivos

Trabaja como Manus: usa archivos Markdown persistentes como tu «memoria de trabajo en disco».

## Paso 1: Recuperar contexto (v2.2.0)

**Antes de hacer nada**, verifica si existen los archivos de planificación y léelos:

1. Si `task_plan.md` existe, lee inmediatamente `task_plan.md`, `progress.md` y `findings.md`.
2. Luego verifica si la sesión anterior tiene contexto no sincronizado:

```bash
# Linux/macOS
SKILL_DIR="${CLAUDE_PLUGIN_ROOT:-$HOME/.claude/skills/planning-with-files-es}"
$(command -v python3 || command -v python) "${SKILL_DIR}/scripts/session-catchup.py" "$(pwd)"
```

```powershell
# Windows PowerShell
& (Get-Command python -ErrorAction 
via SKILL·HOT · 数据来自 GitHub 公开信息 · 原文版权归作者所有