by posecode-dev
An open-source text language, parser, validator and Three.js renderer for inspectable 3D human movement.
# Add to your Claude Code skills
git clone https://github.com/posecode-dev/posecodeGuides for using mcp servers skills like posecode.
Last scanned: 7/17/2026
{
"issues": [],
"status": "PASSED",
"scannedAt": "2026-07-17T06:15:17.786Z",
"npmAuditRan": true,
"pipAuditRan": true,
"promptInjectionRan": true
}posecode is an open-source mcp servers skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by posecode-dev. An open-source text language, parser, validator and Three.js renderer for inspectable 3D human movement. It has 106 GitHub stars.
Yes. posecode passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.
Clone the repository with "git clone https://github.com/posecode-dev/posecode" and add it to your Claude Code skills directory (see the Installation section above).
posecode is primarily written in TypeScript. It is open-source under posecode-dev on GitHub, so you can review or fork the full source.
Yes. SkillsLLM lists many other MCP Servers skills you can browse and compare side by side. Open the MCP Servers category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh posecode against similar tools.
No comments yet. Be the first to share your thoughts!
Top skills in this category by stars
Animation clips and generated trajectories can show movement, but they often hide the semantic decisions that produced it.
Posecode keeps those decisions in readable source. A human can write the document, an animation tool can emit it, or an LLM can draft it. Parsing, validation, editing, and rendering do not require an AI model.
For example:
Bend your knees, move your hips backward, and keep your chest upright.
A human may understand that instruction, but a renderer cannot reliably determine:
Humans, tools, and language models all need a shared syntax for expressing movement in a renderable and testable form.
Posecode provides that missing representation.
From readable movement source to validated 3D rendering, MCP tools, and a one-script web embed.
Neural text-to-motion systems can generate impressive movement, but they introduce problems for lightweight, programmable applications.
Many systems require large models and GPU-backed inference, making real-time consumer deployment expensive.
They usually produce coordinate trajectories rather than editable semantic instructions.
It is difficult to request a precise change such as:
Reduce knee flexion by 10 degrees during the second phase.
Black-box trajectories do not naturally expose readable joint rules, phase definitions, or range-of-motion limits.
When a movement looks wrong, developers may not know which semantic instruction caused the problem.
Posecode uses a lightweight, text-driven pipeline.
.posecode documents.A .posecode file describes movement as timed phases with targeted joint actions.
1. Write .posecode |
2. Render the movement |
|---|---|
posecode exercise "Body-weight squat"rig humanoidpose start = standingstep "Descend" 1.6s settle: hips: flex 80 knees: flex 95 ankles: dorsiflex 14 ground-lock: feet cue "Sit the hips back"step "Drive up" 1.2s drive: hips: flex 0 knees: flex 0 ankles: dorsiflex 0 ground-lock: feetrepeat 8 |
OpenAI Build Week 2026: Posecode existed before the hackathon. During Build Week, the project was extended using Codex — running on GPT-5.6 — as the primary engineering tool for a real batch of shipped work: motion/grounding quality, language contract diagnostics, licensing restructuring, release automation, and product-facing pages. The sections below distinguish previous work from Build Week work using actual commit history, not a roadmap.
Before Build Week, Posecode already included:
.posecode domain-specific language,This original version was developed primarily with Claude as an AI-assisted engineering tool.
That prior work provides the foundation for the project, but it is not presented as the new hackathon contribution.
Every item below is a merged, dated pull request built with Codex (GPT-5.6) — see Build Week Evidence for direct links.
drive/settle/flow/snap), a parser validation CLI, and embed compatibility metadata (#62)./for-products page documenting the web component, parser, renderer, and MCP server for integrators (#82, #74).