tmr-myself-config

tmr-myself-config is a skill for Claude Code, Codex from marlonvidal/tech-manager-os. It costs 58 tokens per session (5,473 once invoked), scanned A, original, MIT.

A guided setup conversation that records a manager's work context, projects, team, and collaborators for use by other AI skills.

In plain words
What is it for?
It helps initialize or update a manager profile, add project and people context, scaffold projects, and map collaborators.
Why use it?
It reduces repeated explanations by keeping shared context in the workspace and updating only what has changed.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: mentions CLAUDE.md.

Good fit It helps initialize or update a manager profile, add project and people context, scaffold projects, and map collaborators.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/marlonvidal/tech-manager-os/tmr-myself-config
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 marlonvidal/tech-manager-os --skill tmr-myself-config
Clone the repo
git clone --depth 1 https://github.com/marlonvidal/tech-manager-os

Made for: Claude Code, Codex.

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 tmr-myself-config

README.md
[![agentmods](https://agentmods.dev/badge/skills/marlonvidal/tech-manager-os/tmr-myself-config/github.svg)](https://agentmods.dev/skills/marlonvidal/tech-manager-os/tmr-myself-config)
Your own site
<a href="https://agentmods.dev/skills/marlonvidal/tech-manager-os/tmr-myself-config"><img src="https://agentmods.dev/badge/skills/marlonvidal/tech-manager-os/tmr-myself-config/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 tmr-myself-config

Your own site · 80×15
<a href="https://agentmods.dev/skills/marlonvidal/tech-manager-os/tmr-myself-config"><img src="https://agentmods.dev/badge/skills/marlonvidal/tech-manager-os/tmr-myself-config.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 58 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 5,473 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.00058 $0.05473
Opus 5 $0.00029 $0.02736
Sonnet 5 $0.00012 $0.01095
Haiku 4.5 $0.00006 $0.00547

Measured 7d ago against content hash ea672d7b8341, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

tmr-myself-config 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 7d 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.

docs/skills/tmr-myself-config/SKILL.md · 617 lines

How it starts

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

tmr-myself-config

Conducts an adaptive conversation to build a complete picture of who you are as a manager — your working style, products, team, and collaborators — then writes that context across your vault so every AI skill becomes more assertive and personalized.

Usage

  • /tmr-myself-config — full setup (first run or re-run; always merges, never overwrites)
  • /tmr-myself-config update — delta review: checks current context against your vault, asks only what changed

EXECUTION

When invoked, check if the user passed the argument update. If so, follow the UPDATE section. Otherwise follow BOOTSTRAP → ARCHETYPE → BASE-CONTEXT → PRODUCT-BRANCH (if applicable) → PEOPLE-BRANCH (if applicable) → CONTRACTOR-CHECK → CONFIRM → WRITE in order.


BOOTSTRAP

Step B1: Locate the vault root

Run:

git rev-parse --show-toplevel

Store as VAULT_ROOT. All paths below are relative to VAULT_ROOT.

Step B2: Find the manager's profile

List all .md files in my-career/ (non-recursive). The file matching <email>.md (containing an @) is the manager's profile.

If none found: print "No profile found in my-career/. Run tmr init first." and exit. If multiple found: print the list and ask "Which is your profile?" Wait for the user's selection.

Store as PROFILE_PATH and MANAGER_EMAIL.

Read the profile frontmatter. Extract any already-known fields:

  • name, role, company, manager_type, working_style, ai_communication_style

Store as KNOWN map. Fields present in KNOWN will not be re-asked unless the user requests it.

When loading direct reports in Step B3, read the relationship field from each profile. If relationship is absent (profile predates this schema), treat it as direct-report — the folder location is the authoritative fallback.

Step B3: Read existing vault context

Read and store (silently — no output to user yet):

  1. Leadership: list files in my-leadership/. For each <email>.md, extract name, role.
  2. Direct reports: list all <email>.md files in my-teams/members/. For each, extract name, role, relationship. If relationship is absent, default to direct-report.
  3. Contractors: list all <email>.md files in my-company/contractors/members/. For each, extract name, role, company, relationship. If relationship is absent, default to contractor.
  4. Collaborators: list all <email>.md files in my-company/members/. For each, extract name, role, relationship. Exclude entries where relationship: unknown — those are auto-created attendee profiles, not known collaborators.
  5. Projects: list all subdirectory names in my-company/projects/. For each, read <slug>/<slug>-project.md frontmatter and extract name, status, owner. If no project file exists for a subdirectory, record status: unknown.
  6. Org config: if config/organization.yaml exists, read internal_domains list. If it does not exist, INTERNAL_DOMAINS = [domain portion of MANAGER_EMAIL].

Read the full file on GitHub · 617 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. 7d ago First seen · 617 lines · 58 tokens per session scan A ea672d7b8341

Subscribe to this mod's changes

tmr-myself-config is a skill published in the GitHub repository marlonvidal/tech-manager-os (17 stars, last pushed 2mo ago), licensed MIT. It adds 58 tokens to every session and 5,473 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-09-03.

Related

Other skills, from other repositories

recipe-create-meet-space

Create a Google Meet meeting space and share the join link.

googleworkspace/cli · 18 tokens

workthreads

SpecStory Workthreads - a weekly work-thread rollup across a team's repos from SpecStory coding histories (any agent - Claude Code, Codex, Cursor, Gemini, and more). It groups the window's sessions into threads of work per project and labels each new / open / recently closed, so a lead sees what shipped, what is still…

specstoryai/getspecstory · 126 tokens

atmos-config

Atmos root configuration: atmos.yaml discovery, precedence, deep merging, basepath, imports, minimal bootstrap, and routing to narrower Atmos skills.

cloudposse/atmos · 31 tokens

story-readiness

Validate that a story file is implementation-ready. Checks for embedded GDD requirements, ADR references, engine notes, clear acceptance criteria, and no open design questions. Produces READY / NEEDS WORK / BLOCKED verdict with specific gaps. Use when user says 'is this story ready', 'can I start on this story', 'is…

Donchitos/Claude-Code-Game-Studios · 77 tokens

autotask-creator

Rules for automation CRUD from the group-chat commander. The commander does not call mutation tools and does not edit cloud/autotasks files directly. It emits one or more top-level ... containers in its final text; the bus parses and applies them after the turn.

Orkas-AI/Orkas · 5 tokens

projects

List all managed projects with status, branch, open PRs, and open issue counts — portfolio-level view.

me2resh/apexyard · 24 tokens