publish-corporate

publish-corporate is a skill for Claude Code from mishahanin/heading-os. It costs 30 tokens per session (2,719 once invoked), scanned A, original, Apache-2.0.

A controlled workflow for copying corporate-approved workspace content into a shared corporate repository. It supports previewing, copying, and verifying the files before executives retrieve them with Git.

In plain words
What is it for?
Use it to preview eligible files, copy them to the corporate repository, and verify the published result.
Why use it?
It separates shared corporate material from private workspace content and gives the publisher a chance to check what will be distributed.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: model in frontmatter.

Needs its repository: it reads a path above its own folder, which exists only inside the repository. The line is CEO-only skill. Copies corporate-classified content from the DATA overlay (.heading-os-data) to the heading-os-corporate repo for distribution to all executives.

Good fit Use it to preview eligible files, copy them to the corporate repository, and verify the published result.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/mishahanin/heading-os
agentmods
npx agentmods add skills/mishahanin/heading-os/publish-corporate

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 publish-corporate

README.md
[![agentmods](https://agentmods.dev/badge/skills/mishahanin/heading-os/publish-corporate/github.svg)](https://agentmods.dev/skills/mishahanin/heading-os/publish-corporate)
Your own site
<a href="https://agentmods.dev/skills/mishahanin/heading-os/publish-corporate"><img src="https://agentmods.dev/badge/skills/mishahanin/heading-os/publish-corporate/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 publish-corporate

Your own site · 80×15
<a href="https://agentmods.dev/skills/mishahanin/heading-os/publish-corporate"><img src="https://agentmods.dev/badge/skills/mishahanin/heading-os/publish-corporate.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 30 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,719 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 warn 7 Sept 2026
SkillSpector: 1 finding, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium Excessive Agency · line 11
    Skill selects an external model or provider that may use a different account or billing plan than the operator expects. Undisclosed model switches can cause unexpected cost or quota consumption.
    Fix: Remove the model/provider override or disclose it prominently and require explicit operator approval before invoking an external coding CLI or billed model.
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.00030 $0.02719
Opus 5 $0.00015 $0.01359
Sonnet 5 $0.00006 $0.00544
Haiku 4.5 $0.00003 $0.00272

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

Security

Grade A, and why

publish-corporate 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.

.claude/skills/publish-corporate/SKILL.md · 201 lines

How it starts

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

Publish Corporate Content

CEO-only skill. Copies corporate-classified content from the DATA overlay (.heading-os-data) to the heading-os-corporate repo for distribution to all executives. Canonical mechanism: python scripts/publish-corporate.py --preview|--copy|--verify (reads the source from the data overlay, writes to ../heading-os-corporate/). Execs pull with plain git pull — there is no scheduled sync.

Prerequisites

  1. Read .workspace-identity.json - verify role is "admin". If not, say "This skill is CEO-only." and stop.
  2. Verify the corporate repo exists at the parent directory: ../heading-os-corporate/. If not, say "Corporate repo not found. Run initial setup first." and stop.

Variables

  • $ARGUMENTS - Description of what to publish (e.g., "Updated strategy for Q2", "New competitor-intel skill", "Updated a competing vendor competitive document")

Workflow

Step 1: Identify Files

Read $ARGUMENTS and identify which files in the DATA overlay (.heading-os-data) belong in the corporate repo. The overlay is the publish source: publish-corporate.py sets SOURCE_ROOT = get_data_root(), and every corporate-classified path lives there rather than in the engine clone.

Classification-driven publishing: classification resolves from config/routing-map.yaml (the single input; classification.json was removed in HEADING OS step 7). Post-cutover (step 8, 2026-06-14) publish ships ONLY files whose three-value routing destination is corporate — content, not code. Engine code is NOT published here; execs receive it by cloning the engine repo (.heading-os). The corporate set is content-only: datastore/, knowledge/shared/, the two context/ carve-outs, crm/ config/aliases/address-book, corporate/ daemon config. Use python scripts/classification-health.py --corporate-only to list it.

A file named in $ARGUMENTS may be classified ceo-only today, which routes private. Warn the CEO, and ask whether to reclassify it before publishing by adding a rule to config/routing-map.yaml.

Read the full file on GitHub · 201 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 · 201 lines · 30 tokens per session scan A c4c7c523e09a

Subscribe to this mod's changes

publish-corporate is a skill published in the GitHub repository mishahanin/heading-os (11 stars, last pushed 3d ago), licensed Apache-2.0. It adds 30 tokens to every session and 2,719 once invoked, about $0.0002 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