status

status is a skill for Claude Code, Codex from LilMGenius/polysona. It costs 10 tokens per session (417 once invoked), scanned A, original, MIT.

A status check for a persona-based content workflow. It reads local files to show the active persona and counts for trends, drafts, quality checks, and published content.

In plain words
What is it for?
Use it to check active personas, review persona context, count content at each stage, and see whether the workflow is ready to move from interviews to publication.
Why use it?
It gives a quick view of what is configured and how much content has moved through the pipeline. It avoids relying on guessed information by reporting only what the files contain.

Skill for Claude CodeCodex

Part of the polysona plugin — 8 skills, 5 agents, 3 hooks shipped together

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.

agentmods
npx agentmods add skills/lilmgenius/polysona/status
Any agent
npx skills add LilMGenius/polysona --skill status
Clone the repo
git clone --depth 1 https://github.com/LilMGenius/polysona

Made for: Claude Code, Codex.

Or install polysona, the plugin that ships this one along with the rest of its 8 skills, 5 agents, 3 hooks.

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 status

README.md
[![agentmods](https://agentmods.dev/badge/skills/lilmgenius/polysona/status.svg)](https://agentmods.dev/skills/lilmgenius/polysona/status)
Your own site
<a href="https://agentmods.dev/skills/lilmgenius/polysona/status"><img src="https://agentmods.dev/badge/skills/lilmgenius/polysona/status.svg" alt="Measured on agentmods" height="20"></a>
Per session 10 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 417 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00010 $0.00417
Opus 5 $0.00005 $0.00209
Sonnet 5 $0.00002 $0.00083
Haiku 4.5 $0.00001 $0.00042

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

Security

Grade A, and why

status 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 4d 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/status/SKILL.md · 25 lines

What it actually says

!ACTIVE=$(cat personas/_active.md 2>/dev/null || echo "default"); ls personas/ 2>/dev/null && echo "---" && cat "personas/$ACTIVE/persona.md" 2>/dev/null && echo "---" && cat "personas/$ACTIVE/nuance.md" 2>/dev/null && echo "---" && cat "personas/$ACTIVE/accounts.md" 2>/dev/null && echo "---" && ls content/trends/ 2>/dev/null | wc -l && echo "trend files" && echo "---" && ls content/drafts/ 2>/dev/null | wc -l && echo "draft files" && echo "---" && ls content/qa/ 2>/dev/null | wc -l && echo "qa files" && echo "---" && ls content/published/ 2>/dev/null | wc -l && echo "published files"

Status Skill Protocol

Display a quick system status snapshot:

  • Active personas count
  • Last interview footprint from persona context
  • Trends, drafts, QA reports, and published content counts
  • Pipeline readiness status (interview -> trend -> content -> qa -> publish)

Guardrails

  • Only report facts grounded in the loaded files.
  • Do not invent psychology frameworks, audience segments, or pipeline components that are not explicitly present.
  • If framework coverage is partial, list only the exact framework names that appear in interview-log.
  • If the missing frameworks are not explicitly named in the files, report only the missing count.
  • Do not infer the category or identity of missing frameworks from the global project spec.
  • Treat GAP or summary rows as log entries, not as substitute names for missing psychology frameworks.
  • If a section is missing, say it is missing instead of inferring completion.
  • Prefer exact counts from content/trends/, content/drafts/, content/qa/, and content/published/ over assumptions.
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. 4d ago First seen · 25 lines · 10 tokens per session scan A 5d54cf10df0f

Subscribe to this mod's changes

status is a skill published in the GitHub repository LilMGenius/polysona (161 stars, last pushed 15d ago), licensed MIT. It adds 10 tokens to every session and 417 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

self-improvement

บันทึกการเรียนรู้ ข้อผิดพลาด และการแก้ไขเพื่อการปรับปรุงอย่างต่อเนื่อง ใช้เมื่อ: (1) คำสั่งหรือการทำงานล้มเหลว (2) ผู้ใช้แก้ไขข้อมูล (3) ผู้ใช้ร้องขอความสามารถที่ไม่มี (4) API หรือเครื่องมือภายนอกล้มเหลว (5) พบแนวทางที่ดีกว่าสำหรับงานที่ทำซ้ำ หรือต้องการทบทวนการเรียนรู้ก่อนเริ่มงานสำคัญ.

bl1nk-bot/bl1nk-agents-manager · 122 tokens

rust-testing

Rust testing patterns including unit tests, integration tests, async testing, property-based testing, mocking, and coverage. Follows TDD methodology.

bl1nk-bot/bl1nk-agents-manager · 31 tokens

plugin-development

This skill should be used when creating plugins, writing skills, building commands, developing agents, or asking about "plugin development", "create skill", "write command", "build agent", "SKILL.md", "plugin structure", "progressive disclosure".

bl1nk-bot/bl1nk-agents-manager · 54 tokens

html-ppt-xhs-pastel-card

A personal manifesto: a year of saying yes — the premise, the scenes, the turn, and the meaning that lands. Built as a decision-grade story deck for community, talk audience.

linyeping/Metis · 48 tokens

html-ppt-xhs-white-editorial

A staff-engineer promotion packet — scope, the proof moments, the artifacts, and the impact that clears the bar. Built as a decision-grade career deck for manager, calibration committee.

linyeping/Metis · 46 tokens

html-ppt-zhangzara-8-bit-orbit

A gamer's journey building a retro-arcade collection — the obsession, the hunt, and what the machines came to mean. Built as a decision-grade story deck for friends, hobby community.

linyeping/Metis · 53 tokens