boss-briefing

boss-briefing is a skill for Claude Code from sehoon787/my-codex. It costs 23 tokens per session (1,813 once invoked), scanned A, original, MIT.

A session-management workflow that checks a project’s briefing vault, a folder holding working notes and agent preferences, then syncs its state and analyses work patterns. It can also propose updates to persona rules.

In plain words
What is it for?
Checking session state, recovering missing context, syncing the briefing vault, analysing how work is done, and suggesting preference or persona-rule changes.
Why use it?
It helps preserve useful context between coding sessions and identify gaps or outdated information in the project’s notes.

Skill for Claude Code

Written for Claude Code: UserPromptSubmit hook event. Also seen: mentions subagents; mentions Codex.

Good fit Checking session state, recovering missing context, syncing the briefing vault, analysing how work is done, and suggesting preference or persona-rule changes.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/sehoon787/my-codex/boss-briefing
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 sehoon787/my-codex --skill boss-briefing
Clone the repo
git clone --depth 1 https://github.com/sehoon787/my-codex

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 boss-briefing

README.md
[![agentmods](https://agentmods.dev/badge/skills/sehoon787/my-codex/boss-briefing/github.svg)](https://agentmods.dev/skills/sehoon787/my-codex/boss-briefing)
Your own site
<a href="https://agentmods.dev/skills/sehoon787/my-codex/boss-briefing"><img src="https://agentmods.dev/badge/skills/sehoon787/my-codex/boss-briefing/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 boss-briefing

Your own site · 80×15
<a href="https://agentmods.dev/skills/sehoon787/my-codex/boss-briefing"><img src="https://agentmods.dev/badge/skills/sehoon787/my-codex/boss-briefing.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 23 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,813 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. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00023 $0.01813
Opus 5 $0.00012 $0.00907
Sonnet 5 $0.00005 $0.00363
Haiku 4.5 $0.00002 $0.00181

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

Security

Grade A, and why

boss-briefing 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 9d 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.

skills/core/boss-briefing/SKILL.md · 188 lines

How it starts

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

Boss Briefing Skill

Vault sync, workflow pattern analysis, and persona rule management. Run this skill during or at the end of a session to keep .briefing/ healthy and up to date.

This skill replaces the profile update functionality from stop-profile-update.js (which remains as a fallback for sessions where /boss-briefing is not run). The existing briefing-vault skill handles vault templates and initialization; this skill handles sync, analysis, and persona learning.

The my-codex runtime uses briefing-runtime.js for state management. State is stored in .briefing/state.json and can be read/written via standard filesystem operations.


Step 1: Read state.json

Read .briefing/state.json and extract session metadata:

  • date — session date (YYYY-MM-DD)
  • workCounter — number of meaningful work events
  • sessionMessageCount — total prompts in this session
  • lastVaultSync — ISO timestamp of last boss-briefing run
  • sessionStartHead — git HEAD at session start (empty for non-git projects)
  • promptCount — prompt counter
  • editCount — edit counter
  • subagentCount — subagent completion counter
  • subagentSeq — sequential subagent index for agent-log enrichment

If state.json does not exist or is empty, report that and skip to Step 6.

Step 2: Previous Session Gap Detection

Compare the date field in state.json with today's date.

  • If the gap is >= 1 day, scan .briefing/sessions/ for the most recent session file (by filename date prefix, excluding *-auto* files).
  • Report the gap: "N day(s) since last session on YYYY-MM-DD."
  • If sessions exist, summarize the last session file's title/goal section for context recovery.
  • If no previous sessions exist, note that this appears to be a fresh vault.

Step 3: Analyze agent-log.jsonl Sequences

Read .briefing/agents/agent-log.jsonl. Parse all entries from the last 30 days.

  1. Group entries by date (using the ts field, truncated to YYYY-MM-DD).
  2. For each day, extract the ordered sequence of agent_type values.
  3. Look for recurring sub-sequences of length >= 2 that appear in >= 2 different sessions (days).
  4. Record each detected pattern with:
    • The sub-sequence (e.g., explore → executor → code-reviewer)
    • How many sessions it appeared in
    • The phase mapping if available (e.g., research → implement → review)

Read the full file on GitHub · 188 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. 9d ago First seen · 188 lines · 23 tokens per session scan A 4cb95074315c

Subscribe to this mod's changes

boss-briefing is a skill published in the GitHub repository sehoon787/my-codex (26 stars, last pushed yesterday), licensed MIT. It adds 23 tokens to every session and 1,813 once invoked, about $0.0001 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

maintain-codex-wiki

Maintain a review-first Markdown knowledge base for Codex practices with source provenance, engineering capture, citation-aware queries, explicit archive and promotion, and deterministic linting. Use when asked to capture a durable engineering lesson, ingest Codex research, query or archive what the repository knows…

Phelan164/codex-howto · 76 tokens

unlazy

Evidence-backed completion discipline for substantial tasks. Use when the user explicitly asks for exhaustive follow-through, every requested item finished, a long autonomous task to continue until measurable completion, or invokes unlazy, depth-tree, or gate-based execution. Do not use for trivial edits, factual…

cmdr-chara/codex-toolkit · 75 tokens

ctxwise

Audit and optimize OpenAI Codex context locally, compile model and subagent profiles, detect capability drift, create redacted lockfiles, inspect model-visible prompt structure, and render honest token, credit, quota, or API-cost receipts. Use when the user explicitly invokes CtxWise or asks to run its installed CLI…

FramY2/ctxwise · 84 tokens

planning-with-files

Use this by default for non-trivial multi-step work that needs persistent planning, progress tracking, or durable notes on disk. Trigger when a task will likely span multiple tool calls, research steps, verification loops, or enough context that the plan should not live only in transient chat memory.

Galaxy-Dawn/claude-scholar · 61 tokens

daily-briefing

Proactive daily briefing that fires on a recurring schedule, pulls recent memory and workspace context, composes a structured summary (action items, progress, radar, next steps), and delivers it to all active channels. Enable with a time like "set up my daily briefing at 9am". Disable, reschedule, or check status at…

vellum-ai/vellum-assistant · 75 tokens

obsidian-kb-artifacts

Use this skill for Obsidian-native formatting and derived artifacts such as Markdown formatting, wikilinks, registry tables, canvas files, optional Bases, CLI operations, and link repair. This skill does not decide knowledge routing.

Galaxy-Dawn/claude-scholar · 52 tokens