원클릭으로
artifact-registry
Helps scaffold and register new artifacts in the strict-mode context engineering kit.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Helps scaffold and register new artifacts in the strict-mode context engineering kit.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Guides the creation and review of Architectural Decision Records (ADRs). Use this skill when a significant architectural change is proposed, a new technology is introduced, or a trade-off needs to be documented.
Intelligently routes requests to the correct context instructions and documentation files. Use this skill to determine which AGENT.md, guide, or technical instruction file is most relevant for a user's request.
Scaffold API mocking infrastructure using Mountebank and Testcontainers for reliable integration testing.
Manage full-stack observability using Logfire (logging/tracing) and OpenObserve (storage/visualization).
Interface for managing the Temporal Database and AI system (ReDB + GGUF embeddings).
Spec-Driven Development workflow using VibesPro conventions
| name | artifact-registry |
| description | Helps scaffold and register new artifacts in the strict-mode context engineering kit. |
| metadata | {"id":"ce.skill.artifact-registry","tags":["routing","validation","tools"],"inputs":{"files":["ce.manifest.jsonc",".github/ce/vocab.md"],"concepts":["strict-mode"],"tools":["toolset:write"]},"outputs":{"artifacts":[],"files":[],"actions":["create-artifact","register-manifest","run-task"]},"dependsOn":{"artifacts":["ce.task.validate"],"files":[".vscode/tasks.json"]},"related":{"artifacts":["ce.prompt.add-artifact"],"files":[".github/skills/artifact-registry/scripts/register-artifact.py"]}} |
This skill assists the agent in safely adding new artifacts (prompts, instructions, agents, skills, toolsets or docs) to the strict-mode manifest. Use it whenever the user asks to create a new file type or extend functionality.
Gather details. Ask the user for:
.github/ce/vocab.md)..github/prompts/my-feature.prompt.md).If the artifact is a skill, also ask for the skill name.
Scaffold the file. Use the Python script scripts/scaffold-artifact.py to create the file
with appropriate front matter. Pass the captured details as command‑line arguments. The
script will create any missing directories, add required subfolders for skills and insert
placeholders for the body.
Register in the manifest. Immediately run scripts/register-artifact.py on the newly
created file. This script parses the YAML front matter, constructs a manifest entry with
declared inputs/outputs and inserts it into ce.manifest.jsonc. It will fail if the id is
not unique or if tags are invalid.
Validate. Invoke the Context Kit: Validate task to ensure the manifest and new artifact
meet all structural and dependency requirements. Address any reported issues before proceeding.
Summarise. Inform the user that the artifact was created and registered successfully, and remind them to fill in the body of the file with appropriate instructions or documentation.
By following these steps, new artifacts enter the system cleanly without bypassing strict‑mode constraints or introducing technical debt.