praxis-slice

praxis-slice is a skill for Claude Code from jeet129/praxis. It costs 51 tokens per session (1,163 once invoked), scanned A, original, MIT.

A process for running one planned implementation slice from start to finish. An implementation slice is a defined piece of product work, coordinated by a delivery lead and checked through reviews and testing.

In plain words
What is it for?
Use it to build the next roadmap slice, launch the required specialist agents, produce review and QA reports, and record the result.
Why use it?
It organizes coding, review, quality checks, documentation, and closeout around one manageable piece of work.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: mentions subagents; mentions Codex; $skill-name invocation.

Part of the praxis plugin — 105 skills, 12 commands, 17 agents, 6 hooks shipped together

Good fit Use it to build the next roadmap slice, launch the required specialist agents, produce review and QA reports, and record the result.

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

Made for: Claude Code.

Or install praxis, the plugin that ships this one along with the rest of its 105 skills, 12 commands, 17 agents, 6 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 praxis-slice

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/jeet129/praxis/praxis-slice"><img src="https://agentmods.dev/badge/skills/jeet129/praxis/praxis-slice.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 51 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,163 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.00051 $0.01163
Opus 5 $0.00026 $0.00581
Sonnet 5 $0.00010 $0.00233
Haiku 4.5 $0.00005 $0.00116

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

Security

Grade A, and why

praxis-slice 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.

codex-plugin-assets/skills/praxis-slice/SKILL.md · 107 lines

How it starts

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

capability: command
domain: codex-plugin
state: active
dependencies: [source-grounded-coding, code-review, secure-coding, testing-strategy, cicd-pipeline, deploy-release]
triggers: [praxis slice, implementation slice, build next slice, run slice]
outputs: [slice_status, prs, review_reports, qa_report, documentation_check, episodic_entry]
consumers: [praxis-release, praxis-review]
references: [../../workflows/implementation-slice.yaml]

Praxis Slice

Run one implementation slice end-to-end. You do NOT execute the slice yourself. You launch the delivery-lead session, which orchestrates.

Steps

  1. Identify the next slice from .project/working/active-workflow.md and the phased roadmap. If unclear, ask the user for the slice id.

  2. Launch the delivery-lead subagent session using codex-agents/delivery-lead.toml. Give it this prompt:

    Run implementation-slice.yaml for slice <slice-id>.
    
    Follow the workflow STRICTLY. Do NOT skip any step.
    
    1. Open the slice. Update .project/working/active-workflow.md.
    
    2. Launch lead-developer FIRST (codex-agents/lead-developer.toml).
       Give it the slice spec, AC, and touched modules. Wait for its
       output — the implementation packet at
       .project/working/slice-<slice-id>-packet.md AND the task ledger
       at .project/working/slice-<slice-id>-tasks.yaml, which include:
         - decomposed tasks per specialist
         - dependencies between tasks (on ARTIFACTS, not on agents
           finishing: FE depends on the API contract task, not on the
           backend implementation; test scaffolding depends on AC +
           contract, not on code)
         - relevant NFRs
         - test-plan skeleton
    
    3. ONLY AFTER the packet + ledger exist, dispatch specialists.
       PREFERRED (two-tier, canonical): lead-developer dispatches the
       specialist sessions itself per the ledger DAG, launching
       parallel-safe tasks concurrently (FE + BE + mobile + test
       scaffolding all start once the contract tasks land), and runs
       integration validation when they report back, then reports
       slice completion to you.
       FALLBACK (only if this Codex environment cannot nest session
       launches from the lead-developer session): you launch the
       specialist sessions yourself — but strictly per lead-developer's
       ledger DAG and parallelism plan, never your own decomposition,
       and you hand lead-developer the specialists' outputs for
       integration validation before proceeding.
    
    4. When lead-developer reports integration-validated completion
       (every specialist task done, slice composes end-to-end),
       launch (in parallel):
         - code-reviewer for every PR
         - ux-designer for visual review when the slice has UI tasks
           (evidence: implementation screenshots at 2-3 viewports incl.
           empty/loading/error states, scored against the design plan +
           tokens per the frontend-design skill)
         - security-reviewer if the slice is security-bearing
           (touches auth, data-handling, public surface, deps,
           compliance)
         - qa-engineer for every PR
    
    5. If any reviewer returns a blocker: fix loop. Same specialist
       that owns the file gets the finding; re-review by the blocking
       reviewer. Loop until all reviewers pass.
    
    6. Close the slice. Write acceptance verdict and episodic entry.
    
    NEVER launch a specialist session directly for slice implementation.
    Lead Developer builds the packet first. This rule holds even if the
    slice looks small or only one specialist appears needed.
    

Read the full file on GitHub · 107 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 · 107 lines · 51 tokens per session scan A 940ed3fbd18f

Subscribe to this mod's changes

praxis-slice is a skill published in the GitHub repository jeet129/praxis (7 stars, last pushed 4d ago), licensed MIT. It adds 51 tokens to every session and 1,163 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-08-31.

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