원클릭으로
artifact-lifecycle
Unified lifecycle management for all framework artifacts (skills, agents, hooks, workflows, templates, schemas)
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Unified lifecycle management for all framework artifacts (skills, agents, hooks, workflows, templates, schemas)
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Creates structured plans from requirements. Generates comprehensive plans with steps, dependencies, risks, and success criteria. Coordinates with specialist agents for planning input and validates plan completeness. Uses template-renderer for formatted output.
Create, validate, and convert skills for the agent ecosystem. Enforces standardized structure for consistency. Enables self-evolution by creating new skills on demand, converting MCP servers and codebases to skills.
Research-backed skill refresh workflow for updating existing skills with TDD checkpoints, memory-aware integration, and EVOLVE/reflection trigger handling.
Ensure accessibility in UI components including semantic HTML, ARIA attributes, keyboard navigation, and WCAG 2.2 AA compliance.
Use when you want to improve response quality through meta-cognitive reasoning. Applies 15+ reasoning methods to reconsider and refine initial outputs.
N-round opposing-stance debates for trade-off analysis. Assigns pro/con roles to agents, runs structured debate rounds with quality scoring, and produces a moderator synthesis with confidence-rated recommendation. Generalizable to architecture, technology, security, and design decisions.
| name | artifact-lifecycle |
| description | Unified lifecycle management for all framework artifacts (skills, agents, hooks, workflows, templates, schemas) |
| version | 1.1.0 |
| author | Claude Code Enterprise Framework |
| agents | ["architect","planner","developer"] |
| triggers | ["create skill","create agent","update skill","deprecate","artifact lifecycle"] |
| metadata | {"skill-author":"Claude Code Enterprise Framework","category":"orchestration","complexity":"medium"} |
| verified | true |
| lastVerifiedAt | "2026-02-22T00:00:00.000Z" |
| tools | ["Read","Write","Edit","Bash","Glob","Grep"] |
| source | builtin |
| trust_score | 100 |
| provenance_sha | e810e2c430ad41d9 |
Convenience wrapper for the unified artifact lifecycle workflow.
This skill provides a simplified interface to the comprehensive artifact lifecycle management workflow at .claude/workflows/core/skill-lifecycle.md.
Use this skill when you need to:
// Invoke this skill
Skill({ skill: 'artifact-lifecycle' });
Full Workflow: .claude/workflows/core/skill-lifecycle.md
Check if artifact exists, compare versions.
Agent: architect Output: Discovery report with recommendations
Determine action: CREATE, UPDATE, or DEPRECATE.
Agent: planner Output: Action plan with tasks
Execute the determined action.
Agent: developer + appropriate creator skill Tools:
Skill({ skill: "skill-creator" }) for skillsSkill({ skill: "agent-creator" }) for agentsSkill({ skill: "hook-creator" }) for hooksSkill({ skill: "workflow-creator" }) for workflowsUpdate registries, catalogs, and CLAUDE.md.
Agent: developer Updates:
Test integration and verify references.
Agent: qa Checks:
User: "Create a skill for Kubernetes deployment"
Router spawns with:
Skill({ skill: "artifact-lifecycle" })
Workflow determines: CREATE mode
Invokes: skill-creator
Updates: registry, catalog, CLAUDE.md
Validates: skill invocable
User: "Update the devops agent to support Terraform Cloud"
Router spawns with:
Skill({ skill: "artifact-lifecycle" })
Workflow determines: UPDATE mode
Version: 1.0.0 → 1.1.0
Updates: agent file, CHANGELOG
Validates: agent referenced correctly
User: "Deprecate the old deployment workflow"
Router spawns with:
Skill({ skill: "artifact-lifecycle" })
Workflow determines: DEPRECATE mode
Adds: deprecation notice, migration guide
Updates: CLAUDE.md with replacement reference
Validates: no broken references
| Parameter | Values | Default |
|---|---|---|
| artifact_type | skill, agent, hook, workflow, template, schema | auto-detect |
| operation | create, update, deprecate, integrate | auto-detect |
| version_bump | major, minor, patch | minor |
| Anti-Pattern | Why It Fails | Correct Approach |
|---|---|---|
| Skipping research-synthesis before CREATE | Risk of creating a duplicate or outdated artifact | Always run research-synthesis first |
| Starting action before Phase 2 decision | Wrong operation applied; CREATE when UPDATE needed | Complete Phase 2 before Phase 3 |
| Skipping Phase 5 validation | Broken artifacts delivered as complete | Always run invocability check |
| No catalog/registry update in Phase 4 | Artifact is invisible to agents and router | Always update catalog, registry, and CLAUDE.md |
| Using artifact-lifecycle for simple version bumps | Heavyweight process for lightweight work | Use skill-updater/agent-updater for UPDATE mode |
| Not specifying artifact_type | Wrong creator skill invoked silently | Always specify or verify artifact_type in Phase 1 |
.claude/context/memory/learnings.md before starting.claude/context/memory/decisions.md.claude/context/memory/issues.mdskill-creator - Direct skill creationagent-creator - Direct agent creationworkflow-creator - Direct workflow creationcodebase-integration - External artifact integration.claude/workflows/core/skill-lifecycle.md - Full lifecycle workflow.claude/workflows/core/external-integration.md - External artifact integration.claude/workflows/core/router-decision.md - Router decision flow