hive.note-taking

Maintains a free-form scratchpad of decisions, working data, and open questions in a shared buffer.

11.0k|5.7k|Updated Jan 12, 2026
One-click install
npx skills add https://github.com/aden-hive/hive --skill hive-note-taking
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: hive.note-taking
Source: https://github.com/aden-hive/hive/tree/main/core/framework/skills/_default_skills/note-taking
Command: npx skills add https://github.com/aden-hive/hive --skill hive-note-taking

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Long-running agent tasks lose critical context when conversation history gets pruned. This Skill preserves decisions, extracted values, and open questions in a persistent shared buffer so nothing important disappears mid-task.

Core Features & Use Cases

  • Structured Working Notes: Records key decisions with rationale, intermediate results, open questions, and blockers in the _working_notes shared buffer key.
  • Checkpoint-Based Updates: Triggers note updates after new information arrives, before large tool outputs, and when non-obvious decisions are made.
  • Queue Separation: Complements the colony task queue by capturing data the progress.db schema does not cover, avoiding duplication of task tracking.
  • Use Case: A worker agent researching across multiple web sources records extracted URLs, IDs, and key snippets in working notes so later reasoning steps can reference them even after earlier tool outputs are pruned.

Quick Start

Ask the agent to maintain structured working notes of decisions, extracted values, and open questions throughout the current task.

Frequently Asked Questions about hive.note-taking

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

FAQPage Schema
How do I prevent an AI agent from losing context during long tasks?

Maintain structured working notes in a persistent shared buffer that survives context pruning. Record key decisions, extracted values, and open questions incrementally at checkpoints rather than relying on full conversation history.

What should agent working notes contain?

Working notes should contain key decisions with their rationale, intermediate results like URLs and IDs, open questions to verify, and blockers. They should not duplicate task queue data such as goals, steps, or error states already stored in the progress database.

When should working notes be updated during a task?

Update notes after receiving information that changes your plan, before tool calls producing substantial output you will reference later, and when making non-obvious decisions whose reasoning would be lost if history is pruned.

What is the difference between working notes and a task queue?

The task queue tracks per-task goals, ordered steps, and SOP gates in a structured database. Working notes capture free-form context the database schema does not cover, such as decision rationale and extracted snippets.

Should working notes be rewritten or updated incrementally?

Working notes should be updated incrementally, not rewritten from scratch each time. Incremental updates preserve accumulated context efficiently and reduce the risk of dropping earlier recorded information.