save-task-list

Save the current session's task list for reuse across Claude Code sessions.

Updated Apr 12, 2026
One-click install
npx skills add https://github.com/ChatGPT-KB/Archon-mirror --skill save-task-list
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: save-task-list
Source: https://github.com/ChatGPT-KB/Archon-mirror/tree/main/.claude/skills/save-task-list
Command: npx skills add https://github.com/ChatGPT-KB/Archon-mirror --skill save-task-list

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Save the current session's task list so it can be restored in future sessions.

Core Features & Use Cases

  • Preserve the current session's task list across Claude Code sessions for continuity.
  • Restore task context in a new session via the startup command.
  • Log the session-task mapping to .claude/archon/sessions/task-lists.jsonl for auditability.

Quick Start

Invoke the skill to save the current session's task list and receive a startup command to restore it later.

Frequently Asked Questions about save-task-list

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I preserve my Claude Code session task list across multiple sessions?

You can preserve your Claude Code session task list across multiple sessions by invoking a save mechanism that stores your current task context and provides a startup command to restore it later. This ensures task continuity without manual recreation.

How does session task tracking work with Claude Code workflows?

Session task tracking in Claude Code workflows uses frontmatter-driven Stop and PostToolUse hooks alongside a SessionStart integration. These components automatically log session-task mappings to a JSONL file, enabling seamless context restoration when resuming work.

Can I restore task context in a new Claude Code session automatically?

Yes, you can restore task context in a new Claude Code session automatically. The skill generates a specific startup command during the save process, which you invoke at the beginning of a new session to reload your previous task list.

Where are Claude Code session task mappings logged for auditability?

Claude Code session task mappings are logged to the .claude/archon/sessions/task-lists.jsonl file. This JSONL format appends session records sequentially, providing a persistent and auditable history of saved task contexts.

Do I need specific hooks configured to save my session task list?

Yes, saving your session task list requires frontmatter-driven Stop and PostToolUse hooks, plus a SessionStart integration. These hooks are enforced by the skill to automatically capture and map your task context during Claude Code workflows.

When should I use a dedicated task list save tool instead of manual logging?

You should use a dedicated task list save tool over manual logging when you need automated context preservation across Claude Code sessions. It eliminates human error by hooking directly into workflow events and generating exact restoration commands.