10x-new

Creates a new change folder with a change.md identity file under context/changes.

Updated Aug 26, 2026
One-click install
npx skills add https://github.com/michaail/hybrid-logs-analyzer --skill 10x-new-michaail
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: 10x-new
Source: https://github.com/michaail/hybrid-logs-analyzer/tree/main/.cursor/skills/10x-new
Command: npx skills add https://github.com/michaail/hybrid-logs-analyzer --skill 10x-new-michaail

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve? Starting a new unit of work often lacks structure: notes, plans, and reviews end up scattered. This Skill bootstraps a consistent change folder under context/changes/<change-id> with a standardized change.md identity file, so every change has a traceable lifecycle from the start. ## Core Features & Use Cases - Change Folder Bootstrap: Creates context/changes/<change-id>/ with a change.md file containing frontmatter (change_id, title, status, created, updated, archived_at) and a Notes section. - Input Validation: Enforces kebab-case change-ids, checks uniqueness against context/changes/ and context/archive/, and verifies the repo is set up for the 10x context structure. - Next-Step Guidance: Suggests the appropriate follow-up skill (/10x-plan, /10x-research, or /10x-frame) based on the parsed intent and copies it to the clipboard. - Use Case: A developer wants to add OAuth login. They invoke the skill with "oauth-login add Google sign-in", and it creates context/changes/oauth-login/change.md with a derived title and the intent captured in Notes, ready for planning. ## Quick Start Ask the assistant to start a new change with a kebab-case id and optional intent, for example: run /10x-new oauth-login add Google sign-in so users skip the email-password step.

Frequently Asked Questions about 10x-new

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I start a new change with the 10x workflow?

Invoke /10x-new with a kebab-case change-id and optional freeform intent, such as /10x-new oauth-login add Google sign-in. The skill creates context/changes/<change-id>/change.md with status new and suggests the next step.

What format must the change-id be in?

The change-id must be kebab-case: lowercase letters, digits, and single hyphens, starting with a letter, with no leading or trailing hyphens and no double hyphens. It must match the pattern ^[a-z][a-z0-9]*(-[a-z0-9]+)*$.

What happens if the change-id already exists?

The skill checks both context/changes/ and context/archive/ for collisions. If the id exists in either location, it prints an error and stops without creating anything, so you must pick a different change-id.

Does /10x-new create the context/changes directory if missing?

No. If context/changes/ is missing, the skill reports that the repo is not set up for the 10x context structure and stops. You must bootstrap the parent directory yourself first.

What files does /10x-new create besides change.md?

None. It only creates the change folder and change.md. Artifacts like frame.md, research.md, and plan.md are produced later by their respective skills (/10x-frame, /10x-research, /10x-plan).