personal-assistant

personal-assistant is a skill for Claude Code from bigduu/Bamboo-agent. It costs 137 tokens per session (1,019 once invoked), scanned A, original, MIT.

Instructions for using Bamboo as a personal assistant with a durable ledger of tasks, events, reminders, and recurring habits. The ledger keeps commitments available across conversations.

In plain words
What is it for?
Use it when the user asks for reminders, states a deadline or appointment, describes a recurring routine, or asks what tasks and events are currently due.
Why use it?
It helps ensure deadlines, appointments, and routines are recorded rather than forgotten or kept only in the current chat. It also prevents duplicate entries by checking for existing records first.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Good fit Use it when the user asks for reminders, states a deadline or appointment, describes a recurring routine, or asks what tasks and events are currently due.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/bigduu/bamboo-agent/personal-assistant
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add bigduu/Bamboo-agent --skill personal-assistant
Clone the repo
git clone --depth 1 https://github.com/bigduu/Bamboo-agent

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for personal-assistant

README.md
[![agentmods](https://agentmods.dev/badge/skills/bigduu/bamboo-agent/personal-assistant/github.svg)](https://agentmods.dev/skills/bigduu/bamboo-agent/personal-assistant)
Your own site
<a href="https://agentmods.dev/skills/bigduu/bamboo-agent/personal-assistant"><img src="https://agentmods.dev/badge/skills/bigduu/bamboo-agent/personal-assistant/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for personal-assistant

Your own site · 80×15
<a href="https://agentmods.dev/skills/bigduu/bamboo-agent/personal-assistant"><img src="https://agentmods.dev/badge/skills/bigduu/bamboo-agent/personal-assistant.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 137 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,019 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00137 $0.01019
Opus 5 $0.00068 $0.00509
Sonnet 5 $0.00027 $0.00204
Haiku 4.5 $0.00014 $0.00102

Measured 8d ago against content hash 6db7bc040be0, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

personal-assistant scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

builtin_skills/personal-assistant/SKILL.md · 91 lines

How it starts

The opening of the file, as written. The whole thing — 91 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Personal Assistant

You are acting as the user's personal assistant. Your working memory for commitments is the ledger tool — durable, cross-session records of todos, events, reminders, and habits. The session Task list is for this session's work; anything the user needs to survive past this conversation goes in the ledger.

Core habits

Capture commitments immediately

When the user states a commitment, deadline, appointment, or routine, record it with ledger upsert right away — do not wait to be asked:

  • Todos get a due_at when a deadline was stated ("by Friday" -> the concrete date). Dates accept RFC3339 or YYYY-MM-DD.
  • Appointments/events get kind: event with starts_at (and ends_at if known).
  • "Remind me at/before X" gets remind_at times — these become real fired reminders, so set them thoughtfully.
  • Recurring routines get kind: habit with a recurrence trigger (e.g. {"type": "weekly", "weekdays": ["mon"], "hour": 9, "minute": 0}).
  • Put the user's own sentence in excerpt so the record's provenance is clear later.

Never duplicate — query first

Before creating a record, query the ledger for similar open records (match on the obvious keywords/kind). If a matching record exists, upsert with its id to update it instead of creating a twin.

Decompose big goals

When the user states a large goal ("plan the offsite", "ship v2"), create one parent record, then use decompose to split it into concrete child records — each child small enough to finish in one sitting, with its own due_at where sensible. A record tree with one root is a plan that survives sessions.

Close the loop promptly

The moment the user says something is finished, cancelled, or blocked, use transition (done / cancelled / blocked, with a short reason). A stale ledger is worse than no ledger. When a conversation makes clear a recorded item already happened, mark it done without being asked.

Suggest reminders for deadlines

Read the full file on GitHub · 91 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 8d ago First seen · 91 lines · 137 tokens per session scan A 6db7bc040be0

Subscribe to this mod's changes

personal-assistant is a skill published in the GitHub repository bigduu/Bamboo-agent (16 stars, last pushed yesterday), licensed MIT. It adds 137 tokens to every session and 1,019 once invoked, about $0.0007 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

agentfield-use

Whenever you have a discrete task to perform — one the user delegated, or one that arose inside your own work — check FIRST whether an installed AgentField agent covers it, and offload to it by default when one does. Coverage, not task size, is the test: even a small job goes to a covering agent. The check is cheap …

Agent-Field/agentfield · 259 tokens

agent-optimization

Improve an Agent State through versioned scores and score-linked Traces from a frozen Benchmark.

Prism-Shadow/penguin-harness · 22 tokens

agent-evaluation

Run one specified Test Agent on one specified Benchmark Case exactly once, privately score that execution, and return one protocol result.

Prism-Shadow/penguin-harness · 28 tokens

agent-initialization

Initialize an Agent's settings from a user requirement by writing AGENTS.md, setting identity metadata, and installing only needed Skills.

Prism-Shadow/penguin-harness · 30 tokens

browser-workflow-skill-builder

Create robust browser automation skills for sites like LinkedIn, X/Twitter, YouTube, Stripe, or other logged-in web apps by saving page context, analyzing HTML/CSS, writing skill-local JS extract/verify scripts, and using CSS selector actions with screenshot verification.

openonion/connectonion · 61 tokens

agent-browser

Browser automation CLI for AI agents. Use when the user needs to interact with websites, including navigating pages, filling forms, clicking buttons, taking screenshots, extracting data, testing web apps, or automating any browser task. Triggers include requests to "open a website", "fill out a form", "click a…

Intelligent-Internet/ii-agent · 108 tokens