Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 0 additions & 14 deletions .changeset/bright-dancers-guide.md

This file was deleted.

2 changes: 0 additions & 2 deletions .changeset/silent-cougars-brush.md

This file was deleted.

19 changes: 19 additions & 0 deletions packages/posecode-embed/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# posecode-embed

## 0.4.0

### Minor Changes

- 645f0aa: Add scoped, ROM-checked custom start-pose overrides with deterministic loop resets, Posecode language/IR v0.3 metadata, and updated authoring guidance.

Expose solved-frame grounding and residual self-collision diagnostics, plus a metric floor guide with facing, authored travel, and loop-reset paths.

Keep the renderer peer range compatible with the parser's new start-pose IR.

Keep the MCP initialization identity synchronized with its published package version.

### Patch Changes

- Updated dependencies [645f0aa]
- posecode-parser@0.4.0
- posecode-render@0.4.0
- posecode-share@0.4.0

## 0.3.0

### Minor Changes
Expand Down
8 changes: 4 additions & 4 deletions packages/posecode-embed/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "posecode-embed",
"version": "0.3.0",
"version": "0.4.0",
"description": "Embed a live 3D Posecode movement anywhere with one <script> tag — the <posecode-player> web component.",
"license": "AGPL-3.0-only",
"type": "module",
Expand Down Expand Up @@ -38,9 +38,9 @@
"three.js"
],
"dependencies": {
"posecode-parser": "0.3.0",
"posecode-render": "0.3.0",
"posecode-share": "0.3.0"
"posecode-parser": "0.4.0",
"posecode-render": "0.4.0",
"posecode-share": "0.4.0"
},
"devDependencies": {
"esbuild": "^0.28.1"
Expand Down
2 changes: 1 addition & 1 deletion packages/posecode-embed/src/compat.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { parse, POSECODE_VERSION } from "posecode-parser";
import type { ParseResult } from "posecode-parser";

/** Version of the posecode-embed package/bundle. */
export const version = "0.3.0";
export const version = "0.4.0";

/** Version of the Posecode language understood by this bundle. */
export const languageVersion = POSECODE_VERSION;
Expand Down
4 changes: 2 additions & 2 deletions packages/posecode-eval/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
".": "./src/index.ts"
},
"dependencies": {
"posecode-parser": "0.3.0",
"posecode-render": "0.3.0",
"posecode-parser": "0.4.0",
"posecode-render": "0.4.0",
"three": "^0.171.0"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/posecode-language/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@
".": "./src/index.ts"
},
"dependencies": {
"posecode-parser": "0.3.0"
"posecode-parser": "0.4.0"
}
}
16 changes: 16 additions & 0 deletions packages/posecode-mcp/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# posecode-mcp

## 0.4.0

### Patch Changes

- 645f0aa: Add scoped, ROM-checked custom start-pose overrides with deterministic loop resets, Posecode language/IR v0.3 metadata, and updated authoring guidance.

Expose solved-frame grounding and residual self-collision diagnostics, plus a metric floor guide with facing, authored travel, and loop-reset paths.

Keep the renderer peer range compatible with the parser's new start-pose IR.

Keep the MCP initialization identity synchronized with its published package version.

- Updated dependencies [645f0aa]
- posecode-parser@0.4.0
- posecode-share@0.4.0

## 0.3.0

### Minor Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/posecode-mcp/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "posecode-mcp",
"version": "0.3.0",
"version": "0.4.0",
"description": "Model Context Protocol server for Posecode: let any LLM agent validate, ROM-check, and get a render link for a .posecode movement, natively.",
"mcpName": "io.github.posecode-dev/posecode-mcp",
"license": "AGPL-3.0-only",
Expand Down Expand Up @@ -46,8 +46,8 @@
],
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.0",
"posecode-parser": "0.3.0",
"posecode-share": "0.3.0",
"posecode-parser": "0.4.0",
"posecode-share": "0.4.0",
"zod": "^3.24.1"
},
"devDependencies": {
Expand Down
4 changes: 2 additions & 2 deletions packages/posecode-mcp/server.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@
"url": "https://github.com/posecode-dev/posecode",
"source": "github"
},
"version": "0.3.0",
"version": "0.4.0",
"packages": [
{
"registryType": "npm",
"identifier": "posecode-mcp",
"version": "0.3.0",
"version": "0.4.0",
"transport": {
"type": "stdio"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/posecode-mcp/src/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export interface PosecodeServerOptions {
}

/** Package/server identity kept in sync by `version-packages`. */
export const POSECODE_MCP_VERSION = "0.3.0";
export const POSECODE_MCP_VERSION = "0.4.0";

export function createPosecodeServer(opts: PosecodeServerOptions = {}): McpServer {
const baseUrl = opts.baseUrl ?? DEFAULT_BASE_URL;
Expand Down
12 changes: 12 additions & 0 deletions packages/posecode-parser/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# posecode-parser

## 0.4.0

### Minor Changes

- 645f0aa: Add scoped, ROM-checked custom start-pose overrides with deterministic loop resets, Posecode language/IR v0.3 metadata, and updated authoring guidance.

Expose solved-frame grounding and residual self-collision diagnostics, plus a metric floor guide with facing, authored travel, and loop-reset paths.

Keep the renderer peer range compatible with the parser's new start-pose IR.

Keep the MCP initialization identity synchronized with its published package version.

## 0.3.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/posecode-parser/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "posecode-parser",
"version": "0.3.0",
"version": "0.4.0",
"description": "Parse the .posecode kinematic motion DSL into a validated, ROM-clamped intermediate representation.",
"license": "Apache-2.0",
"type": "module",
Expand Down
12 changes: 12 additions & 0 deletions packages/posecode-render/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# posecode-render

## 0.4.0

### Minor Changes

- 645f0aa: Add scoped, ROM-checked custom start-pose overrides with deterministic loop resets, Posecode language/IR v0.3 metadata, and updated authoring guidance.

Expose solved-frame grounding and residual self-collision diagnostics, plus a metric floor guide with facing, authored travel, and loop-reset paths.

Keep the renderer peer range compatible with the parser's new start-pose IR.

Keep the MCP initialization identity synchronized with its published package version.

## 0.3.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/posecode-render/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "posecode-render",
"version": "0.3.0",
"version": "0.4.0",
"description": "Render a Posecode IR as an animated 3D human figure (skinned character or procedural mannequin) with Three.js.",
"license": "AGPL-3.0-only",
"type": "module",
Expand Down
2 changes: 2 additions & 0 deletions packages/posecode-share/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# posecode-share

## 0.4.0

## 0.3.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/posecode-share/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "posecode-share",
"version": "0.3.0",
"version": "0.4.0",
"description": "Encode/decode .posecode documents to URL-safe share tokens — the distribution primitive for Posecode permalinks and embeds.",
"license": "Apache-2.0",
"type": "module",
Expand Down
6 changes: 3 additions & 3 deletions playground/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@
"@lezer/highlight": "^1.2.1",
"@vercel/analytics": "^2.0.1",
"posecode-language": "0.2.2",
"posecode-parser": "0.3.0",
"posecode-render": "0.3.0",
"posecode-share": "0.3.0",
"posecode-parser": "0.4.0",
"posecode-render": "0.4.0",
"posecode-share": "0.4.0",
"three": "^0.171.0"
},
"devDependencies": {
Expand Down