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.
npx skills add ellmos-ai/bach --skill selbstmanagementgit clone --depth 1 https://github.com/ellmos-ai/bachWrote 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.
[](https://agentmods.dev/skills/ellmos-ai/bach/selbstmanagement)<a href="https://agentmods.dev/skills/ellmos-ai/bach/selbstmanagement"><img src="https://agentmods.dev/badge/skills/ellmos-ai/bach/selbstmanagement.svg" alt="Measured on agentmods" height="20"></a>- NVIDIA SkillSpector pass
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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00064 | $0.01320 |
| Opus 5 | $0.00032 | $0.00660 |
| Sonnet 5 | $0.00013 | $0.00264 |
| Haiku 4.5 | $0.00006 | $0.00132 |
Grade A, and why
selbstmanagement 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.
How it starts
The opening of the file, as written. The whole thing — 181 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Selbstmanagement Expert
Unterstuetzt ganzheitliches Lebensmanagement mit Fokus auf Balance, Ziele und Strategien.
Kernfunktionen
1. Lebenskreise (7 Bereiche)
Basiert auf dem "Wheel of Life" Modell mit angepassten Kategorien:
| Bereich | Beschreibung |
|---|---|
| Gesundheit | Koerperliche & mentale Gesundheit, Fitness, Schlaf |
| Beziehungen | Partner, Familie, Freunde, soziales Netzwerk |
| Karriere | Beruf, Einkommen, Berufliche Entwicklung |
| Finanzen | Ersparnisse, Investitionen, Finanzielle Sicherheit |
| Persoenliche Entwicklung | Lernen, Hobbys, Kreativitaet, Spiritualitaet |
| Freizeit | Erholung, Spass, Reisen, Abenteuer |
| Umfeld | Wohnen, Arbeitsumgebung, physische Umgebung |
Bewertungsskala: 1-10 (1 = sehr unzufrieden, 10 = exzellent)
2. Berufsziele-Tracking
- Langfristige Karriereziele definieren
- Meilensteine mit Deadlines setzen
- Fortschritt tracken
- Ressourcen und Blocker erfassen
- Review-Termine automatisch planen
3. ADHS-Strategien-Bibliothek
Sammlung erprobter Strategien fuer ADHS-Management:
Kategorien:
- Zeitmanagement (Pomodoro, Time-Boxing, etc.)
- Organisation (Systeme, Routinen, Checklisten)
- Fokus (Ablenkungen minimieren, Deep Work)
- Emotionsregulation (Coping, Selbstfuersorge)
- Motivation (Belohnungssysteme, Gamification)
- Medikation (Reminder, Tracking - optional)
Datenbank-Schema
-- Lebenskreise-Bewertungen
CREATE TABLE IF NOT EXISTS selfmgmt_life_circles (
id INTEGER PRIMARY KEY AUTOINCREMENT,
assessment_date DATE NOT NULL,
health INTEGER CHECK(health BETWEEN 1 AND 10),
relationships INTEGER CHECK(relationships BETWEEN 1 AND 10),
career INTEGER CHECK(career BETWEEN 1 AND 10),
finances INTEGER CHECK(finances BETWEEN 1 AND 10),
personal_growth INTEGER CHECK(personal_growth BETWEEN 1 AND 10),
leisure INTEGER CHECK(leisure BETWEEN 1 AND 10),
environment INTEGER CHECK(environment BETWEEN 1 AND 10),
notes TEXT,
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
);
-- Berufsziele
CREATE TABLE IF NOT EXISTS selfmgmt_career_goals (
id INTEGER PRIMARY KEY AUTOINCREMENT,
title TEXT NOT NULL,
description TEXT,
category TEXT,
target_date DATE,
status TEXT DEFAULT 'active',
progress INTEGER DEFAULT 0,
resources TEXT,
blockers TEXT,
notes TEXT,
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
updated_at TIMESTAMP
);
-- Meilensteine fuer Ziele
CREATE TABLE IF NOT EXISTS selfmgmt_milestones (
id INTEGER PRIMARY KEY AUTOINCREMENT,
goal_id INTEGER REFERENCES selfmgmt_career_goals(id),
title TEXT NOT NULL,
due_date DATE,
completed_at DATE,
notes TEXT
);
-- ADHS-Strategien
CREATE TABLE IF NOT EXISTS selfmgmt_adhd_strategies (
id INTEGER PRIMARY KEY AUTOINCREMENT,
name TEXT NOT NULL,
category TEXT NOT NULL,
description TEXT,
when_to_use TEXT,
steps TEXT,
effectiveness INTEGER DEFAULT 3,
personal_notes TEXT,
times_used INTEGER DEFAULT 0,
last_used DATE
);
What ships with it
1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
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.
- 8d ago First seen · 181 lines · 64 tokens per session scan A 93b0a6e74755
selbstmanagement is a skill published in the GitHub repository ellmos-ai/bach (7 stars, last pushed yesterday), licensed MIT. It adds 64 tokens to every session and 1,320 once invoked, about $0.0003 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-31.
Other skills, from other repositories
building-pydantic-ai-agents
Build AI agents with Pydantic AI — tools, capabilities (including on-demand loading), structured output, streaming, testing, and multi-agent patterns. Use when the user mentions Pydantic AI, imports pydanticai, or asks to build an AI agent, add tools/capabilities, defer capability loading, stream output, define agents…
pydanticai
Build type-safe AI agents and graph-based workflows with PydanticAI and PydanticGraph. Agent creation, function tools, capabilities, dependency injection, structured output, streaming, multi-agent patterns, testing, evals, and graph state machines. Use whenever you are building agents, tool-using LLM workflows, or…
dev-soft-agent
Automated software development pipeline. Scans projects, prioritizes tasks, analyzes code, and orchestrates development loops. Zero dependencies (Python stdlib only).
knowledge-transfer
Interview a person and turn their operating know-how (tacit knowledge) into the company brain: processes, rules with source, a glossary, decisions and open questions, written into the workspace. Use whenever someone needs to capture how a process actually gets done, before a key person leaves or retires, to onboard a…
cowork-os-core
Core operating rules for a cowork-os workspace. Use whenever working inside a Claude Cowork project that uses cowork-os (folders like context/, marketing/, website/, decisions/, signals/, reviews/), or on any strategy, marketing, content, website, or business-development task where decisions and context should persist…
senior-strategy-architect
Use proactively whenever the user asks for any strategy, plan, roadmap, growth plan, GTM, marketing, business, product, brand, pricing, sales, content, retention, fundraising, marketplace, partnerships, community, competitive response, launch, monetization, or business decision. Turns vague asks into senior-level…