Skip to main content

yc-bench scratchpad

A persistent notepad for storing strategy notes, observations, and reminders during your YC-Bench simulation.

Usage

yc-bench scratchpad [ACTION] [CONTENT]

Parameters

ACTION
string
Action to perform: read, write, append, or clear (defaults to read)
CONTENT
string
Content to write or append (required for write/append actions)

Actions

Read

Display current scratchpad contents.
yc-bench scratchpad
yc-bench scratchpad read

Write

Replace scratchpad contents with new text.
yc-bench scratchpad write "New strategy: Focus on high-prestige tasks"

Append

Add text to the end of existing scratchpad contents.
yc-bench scratchpad append "Hired senior dev - watch burn rate"

Clear

Erase all scratchpad contents.
yc-bench scratchpad clear

Response

action
string
Action performed: read, write, append, or clear
content
string
Current scratchpad contents after action
length
number
Character count of scratchpad contents
message
string
Confirmation message

Example

# Write initial notes
yc-bench scratchpad write "Month 1 Strategy:
- Accept only mid-tier tasks
- Maintain 3 months runway
- Target 10 prestige by end of month"
Example Output
{
  "action": "write",
  "content": "Month 1 Strategy:\n- Accept only mid-tier tasks\n- Maintain 3 months runway\n- Target 10 prestige by end of month",
  "length": 98,
  "message": "Scratchpad updated"
}
# Add observation
yc-bench scratchpad append "\n\nNote: Market refresh happens every 7 days"
# Read current notes
yc-bench scratchpad
Example Output
{
  "action": "read",
  "content": "Month 1 Strategy:\n- Accept only mid-tier tasks\n- Maintain 3 months runway\n- Target 10 prestige by end of month\n\nNote: Market refresh happens every 7 days",
  "length": 143,
  "message": "Scratchpad retrieved"
}

Use Cases

  • Track strategic goals and priorities
  • Record observations about market patterns
  • Note employee performance and productivity
  • Plan future hiring and task acceptance
  • Document lessons learned from failed strategies
  • Keep track of important deadlines

Persistence

Scratchpad contents are saved with your simulation state and persist across sessions.

Build docs developers (and LLMs) love