skill

A project guide that separates user-facing workflows from reusable internal capabilities in a coding-agent repository.

In plain words
What is it for?
Use it to organize agent skills, define public workflow entry points, and structure internal capability files.
Why use it?
It makes it clear which workflows agents and users can discover, while keeping supporting knowledge out of the public list.

Agent

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 agents/thuandiep1707/codex-harness-javascript/skill
Clone the repo
git clone --depth 1 https://github.com/thuandiep1707/codex-harness-javascript
Per session 0 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 936 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.00000 $0.00936
Opus 5 $0.00000 $0.00468
Sonnet 5 $0.00000 $0.00187
Haiku 4.5 $0.00000 $0.00094

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

Security

Grade A, and why

skill 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 2d 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/agents/skill.md · 132 lines

How it starts

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

Workflow and capability architecture

Taxonomy

  • Workflow: user-facing orchestration entry point. Đây là thứ user gọi bằng $.
  • Internal capability: reusable knowledge/workflow fragment của một agent. Không expose bằng $.
  • Rule: mandatory behavior/convention.
  • Protocol: structured contract giữa controller/agent.

Public workflow discovery

Codex chỉ discover public workflow trong:

.agents/skills/<workflow-name>/SKILL.md

Vì vậy .agents/skills/ phải được giữ nhỏ và chỉ chứa entry point mà user thực sự cần nhìn thấy.

Current public workflows:

frontend-delivery
frontend-planning

Public workflow package:

.agents/skills/<workflow-name>/
├── SKILL.md
└── agents/
    └── openai.yaml

agents/openai.yaml chỉ là UI metadata, không cấp execution authority.

Internal capabilities

Knowledge nội bộ nằm ngoài discovery root và dùng CAPABILITY.md thay vì SKILL.md:

.agents/capabilities/
├── common/
└── frontend/

Ví dụ:

.agents/capabilities/common/discover-project-stack/CAPABILITY.md
.agents/capabilities/frontend/plan-frontend-work/CAPABILITY.md
.agents/capabilities/frontend/shadcn/CAPABILITY.md
.agents/capabilities/frontend/testing/CAPABILITY.md

Internal capability package không có agents/openai.yaml, vì nó không phải public Codex entry point và không được user invoke trực tiếp.

Agent manifest dùng internal-capabilities: làm allowlist path. Specialist chỉ load capability khi capability đó vừa nằm trong manifest allowlist vừa được Orchestrator route trong issue-handoff.

Progressive disclosure

Public side:

  1. Codex discover workflow name/description.
  2. User hoặc intent routing chọn một workflow.
  3. Chỉ workflow đó được load.

Internal side:

  1. Workflow spawn đúng agent.
  2. Agent đọc manifest/rules.
  3. Brain detect project stack bằng evidence rẻ khi cần.
  4. Orchestrator route smallest internal-capability set cho từng Subtask.
  5. Specialist chỉ load capability được route.
  6. Capability chỉ load reference cần cho nhánh hiện tại.

Read the full file on GitHub · 132 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. 2d ago First seen · 132 lines · 0 tokens per session scan A 8a36f91468aa

Subscribe to this mod's changes

skill is an agent published in the GitHub repository thuandiep1707/codex-harness-javascript (7 stars, last pushed 4d ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 936 tokens. 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.

Related

Other agents, from other repositories

task-specialist

Bounded implementer for one ready task with an exclusive write set and approved context.

Eduardo-Salvador/Agent-Harness-Kit · 21 tokens

ap-manager

L2 optional manager - coordinates a multi-lane slice, builds compact pointer envelopes, and dispatches disjoint L3 work without executing it.

Spielewoy/autoprompt-skill · 32 tokens

ap-framework-generator

L3 executor - FRAMEWORK GENERATE. When the SELECTOR returns MISS, generates a one-off custom framework for the exact task shape - classifies the orthogonal axes, composes the gate sequence from the GATE-LIBRARY with the correct axis-specific gate, emits the gen- leaf with the BLOCKED invariant verbatim, binds an…

Spielewoy/autoprompt-skill · 93 tokens

ap-framework-validator

L4 terminal leaf - FRAMEWORK VALIDATE (HRN-5). A fresh, default-FAIL juror that proves a GENERATED framework is SOUND before any gate runs. Checks the HRN-5 default-FAIL checklist - every gate mapped, exactly one terminal DONE with negatives looping UP, the BLOCKED invariant verbatim, a non-empty acceptance set. PASS…

Spielewoy/autoprompt-skill · 93 tokens

ap-scoper

L3 useful-first roadmap author or complementary scout - proves capability when needed, inspects the real repository, and contributes to one executable ROADMAP.md without spawning.

Spielewoy/autoprompt-skill · 36 tokens

ap-arbiter

L4 terminal leaf - ARBITER. Independent decision-maker for forks the loop cannot resolve on its own. Under UNATTENDED mode it ALWAYS rules and continues, NEVER escalates to the user. Output is a binding ruling logged to the ledger.

Spielewoy/autoprompt-skill · 55 tokens