
Comet Any
FreeCreate and upgrade Comet Classic workflows with ease.
Free · Opens the source repo
What Comet Any does
Comet Any is a specialized skill creation guide designed for users who want to create or enhance Comet Classic workflows using the Comet Creator. This skill provides a structured approach to developing new workflow skills, customizing existing ones, or upgrading them without altering the core Comet Classic entry. Users can start by customizing the five-phase Skills—open, design, build, verify, and archive—allowing for a tailored workflow experience while maintaining the integrity of the original system.
The skill operates by guiding users through a series of steps to define their workflow goals, propose plans, and generate a verifiable Comet-native Skill Bundle. It ensures that every aspect of the workflow is accounted for, including Workflow Nodes, Skill Bindings, Output Schemas, and Guardrails. The user is prompted to confirm each step before any changes are made, ensuring clarity and preventing errors in the workflow development process.
For those looking to upgrade existing skills, Comet Any allows users to read and analyze current Skills, adding necessary Workflow Nodes and other components as needed. The skill emphasizes the importance of output schemas and guardrails, which are crucial for maintaining the integrity and functionality of the workflows being developed. This makes it particularly useful for developers and designers who need to ensure that their workflows are both efficient and compliant with the expected standards.
Overall, Comet Any is an essential tool for users who are engaged in the Comet ecosystem and are looking to streamline their workflow creation and enhancement processes. It provides a clear, step-by-step methodology that can help users avoid common pitfalls associated with skill authoring and workflow management.
When to use it
Use Comet Any when you need to create a new workflow skill, customize an existing one, or upgrade current workflows in the Comet Classic environment.
When not to use it
This skill is not suitable for general skill authoring, cleanup, or review tasks outside the Comet Classic framework.
What you can build with it
Creating a New Workflow Skill
Use Comet Any to define a new workflow from scratch, specifying goals and required components.
Customizing Existing Skills
Leverage Comet Any to modify existing Comet Classic workflows while preserving the original structure.
Upgrading Workflow Nodes
Enhance current workflows by adding new nodes and outputs, ensuring compliance with the required schemas.
How to install Comet Any
View source1. Install with the skills CLI
npx skills add rpamis/comet/comet-any --agent claude-code2. Or install it manually
Download the skill folder and drop it into ~/.claude/skills/ for all projects, or .claude/skills/ to scope it to one repo. Restart Claude Code so it picks up the new skill.
Anthropic's agentic coding CLI, and the reference implementation of Agent Skills. Drop a skill folder into ~/.claude/skills and Claude Code loads it automatically whenever a task matches the skill's description. Claude Code docs
Inside SKILL.md
Written by rpamisComet Any - Skill Creator
/comet-any is the Comet Skill creation guide. The user describes the workflow they want; this Skill resolves real Skills, proposes a plan, waits for confirmation, generates a verifiable Comet-native Skill Bundle, and internally drives eval, review, publish readiness, and install preview.
Ordinary users see three starting points:
customize /comet-classic five-phase Skills: overlay the existingopen / design / build / verify / archiveSkills without modifying the permanent/comet-classicentry itself.create a new workflow Skill: generate a newworkflow-kernelfrom the goal and candidate Skills.upgrade an existing Skill: read existing Skills and add Workflow Nodes, Skill Bindings, Output Schemas, Guardrails, Handoffs, eval, and readiness.
Bundle, Factory, and composition are backend audit terms, not the first-screen user model.
Core Model
Every path compiles to one Workflow Contract:
Workflow Node: a resumable workflow node such asopen,design,plan,execute,subagent-execute,review,verify, orarchive.Node Responsibility: the responsibility this Node owns in the Agent workflow, explaining why it exists, what it must produce, and whether it can be replaced.Skill Binding: the implementation or helper Skill bound to a Node.Required Skill Call: a Skill that must be called inside a Node without replacing the Node implementation. For example,executeandsubagent-executemay requireelementui, whilereviewmay requirewhitebox-code-standard.Output Schema: the artifacts, state, or evidence a Node must produce. Output Schema must be attached to a concrete Workflow Node before it is effective; defining it only inworkflow.outputSchemasdoes not trigger guard, eval, or readiness. Scripts, eval, and readiness depend on Node-attached Output Schemas, not Skill names.Guardrail: a check that blocks or allows Node advancement.Handoff: evidence returned by a subagent or cross-Node delegation.workflow-protocol.json: the package's single runtime source of truth, with kindcomet-five-phase-overlayorworkflow-kernel.
Protected Boundary
comet-five-phase-overlay preserves the Comet Classic five-phase control flow and .comet.yaml state semantics. In ordinary mode:
comet-five-phase-overlayprimary state comes only from<classic-change-dir>/.comet.yamlbound by the Classic layout resolver; no active change or multiple active changes must block and ask the user to choose.- The overlay must not create
.comet/runs/<workflow>/state.jsonas the Comet overlay primary state. Bundle drafts, eval evidence, and publish readiness may keep their own evidence files, but they cannot replace.comet.yaml. controlNodes cannot be overridden:open,execute,verify,archive.producerNodes may be overridden:design,plan, but only when the replacement satisfies the matching Output Schema.handoffandguardrailNodes may require or augment Skills.- If the user insists on replacing a control Node, switch to advanced
workflow-kerneland require a new state model, Output Schemas, and Guardrails. - Every Node must explain its responsibility; internal coordinates are not part of the user-facing workflow model.
Steps
- Resume state: run
comet creator guide --project . --jsonand show a resume summary. - Read preferences: load
.comet/skill-preferences.yaml, then usecomet creator candidates --jsonto discover real local Skills andcomet skill show <name> --jsonto read each candidate's real content and hash. Do not guess capability from a Skill name. - Build proposal: express the goal as Workflow Nodes, Skill Bindings, Output Schemas, Guardrails, Handoffs, and Evidence.
- Show confirmation: list each Node, bound Skill, Required Skill Call, Output Schema, executable disclosure, and readiness impact. The confirmation must show enforcement for each new binding or schema:
guarded,handoff-guarded,evidence-only, oradvisory. - Wait for confirmation: do not write a Bundle draft before confirmation; pause for missing or ambiguous Skills.
- Initialize backend state: after confirmation, call
comet creator init <name> --file <plan.json> --confirmed-proposal --json. - Run the authoring pipeline and generate the Bundle: run
comet creator authoring-plan <name> --depth quick|full --jsonfor the lane DAG. Dispatch lanes by the DAG — dispatch wave1 (script,reference,pause-points) in parallel, dispatch wave2 (workflow-entry,skill-core) in parallel after the script contract, and runskill-reviewas the barrier. Record each lane viacomet creator authoring-record <name> --lane <id> --file <out.json> --json(schema-validated; BLOCKED/NEEDS_CONTEXT is rejected). Then runcomet creator generate <name> --json; it merges recorded content-leaf drafts (entry/node SKILL.md, decision-points, recovery) into the package while the deterministic backbone (protocol/scripts/manifest) stays templated, and renders real review evidence. Outputs entry Skill, Node Skills,reference/workflow-protocol.json, the six scripts, rules, hooks, andcomet/eval.yaml. - Validate: show quick/full eval workload and run or record current draft hash eval evidence; failed eval, skipped eval, or stale-hash evidence cannot become ready.
- Review readiness: read
comet publish review <name> --platform <reference-platform> --jsonand showReadiness:,Blockers:,Warnings:, andEvidence:. - Publish and install preview: publish only after human approval; installation must start with preview and show
No files were written.
Plan Example
Component-library and whitebox-review requirements should produce a plan like:
{
"goal": "Customize /comet-classic five-phase Skills with component and whitebox review requirements.",
"skillCreatorIntent": "customize-comet",
"workflow": {
"kind": "comet-five-phase-overlay",
"name": "team-comet",
"goal": "Require component and whitebox review Skills.",
"nodes": {
"execute": {
"requiredSkillCalls": [
{
"skill": "elementui",
"reason": "Use project component library during direct implementation."
}
]
},
"subagent-execute": {
"requiredSkillCalls": [
{
"skill": "elementui",
"scope": "handoff"
}
]
},
"review": {
"requiredSkillCalls": [
{
"skill": "whitebox-code-standard",
"scope": "review"
}
]
}
}
}
}
Hard Rules
- Show the proposal confirmation page before generation.
- The confirmation must show enforcement for each new binding or schema:
guarded,handoff-guarded,evidence-only, oradvisory. - A Required Skill Call does not replace Node implementation.
- A producer override must declare the Output Schema it satisfies.
- Output Schema must be attached to a concrete Workflow Node before it is effective; defining it only in
workflow.outputSchemasdoes not trigger guard, eval, or readiness. - Ordinary mode must not override control Nodes.
- Eval, review, and publish readiness must read the same
workflow-protocol.json. - Readiness blockers must stop publish: missing current draft hash eval evidence, missing human approval, required capability gaps, or unconfirmed executable disclosures cannot become ready.
- Handoff must require subagents to load Required Skill Calls and return evidence.
- Scripts read protocol and state; they do not use Skill names as validation authority.
- Ask before installation. Never install automatically.
References
comet-any/reference/authoring-protocol.jsoncomet-any/reference/authored-zone-example.mdcomet-any/reference/bundle-authoring.mdcomet-any/reference/authoring-subagents.mdcomet-any/reference/eval-provider.md
Frequently asked questions about Comet Any
Similar skills
Spring Boot Testing
Master testing techniques for Spring Boot 4 applications.
GitHub Issues
Manage GitHub issues efficiently with MCP tools.
Geofeed Tuner
Optimize your IP geolocation feeds in CSV format.
Batch Files
Master Windows batch scripting for automation and task management.
Adobe Illustrator Scripting
Automate your Illustrator workflows with ExtendScript.
Plugin Structure
Create and organize Claude Code plugins effectively.
