소스 정보
- 저장소
- Texarkanine/client-side-mdc-render
- 최근 소스 활동
- 2026년 4월 4일 00:48
- 감지된 SKILL.md 언어
- 영어
- 스타
- 0
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/Texarkanine/client-side-mdc-render --skill niko-creative명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
SOC 직업 분류 기준
| name | niko-creative |
| description | Niko Memory Bank System - Creative Phase - Design Exploration |
This command explores a single open question - an aspect of design or implementation where the approach is genuinely ambiguous and requires evaluating multiple options before committing. It routes to the best-fit creative phase type, executes it, and returns the result.
Within a Niko workflow: Creative is invoked by the plan phase, once per open question. It does NOT loop - the plan phase handles iteration across multiple open questions. Context comes from the memory bank.
Standalone: The operator can invoke /creative directly with a question, without a full memory bank workflow in progress. In this mode, the question comes from operator input rather than memory-bank/active/tasks.md.
If no memory-bank/ directory exists, invoke the niko skill to initialize its persistent files first. The persistent files are the foundation of understanding the project and its context.
Read all available memory-bank files (persistent and ephemeral) for context.
Within a workflow: The plan phase should have flagged this open question in memory-bank/active/tasks.md with:
Standalone: The operator provides the question directly. If it's unclear, ask for clarification.
If the open question is not clearly stated: 🛑 STOP! Ask the operator to clarify what needs to be explored. You're done for now.
Analyze the nature of the open question and select the best-fit creative phase document:
Architecture (.cursor/rules/shared/niko/phases/creative/creative-phase-architecture.mdc): The question is about system structure - how components relate, what patterns to use, how to organize modules, where boundaries should be, how data flows between subsystems.
Algorithm (.cursor/rules/shared/niko/phases/creative/creative-phase-algorithm.mdc): The question is about logic and computation - how to solve a specific problem, what data structures to use, how to handle complex transformations, performance-sensitive processing.
UI/UX (.cursor/rules/shared/niko/phases/creative/creative-phase-uiux.mdc): The question is about user-facing design - how to present information, interaction flows, visual layout, accessibility, style guide decisions.
Generic (.cursor/rules/shared/niko/phases/creative/creative-phase-generic.mdc): The question doesn't fit the above categories - naming conventions, testing strategies, process decisions, tooling choices, configuration approaches, or anything else not explicitly associated with a specific creative phase type.
Load the selected document and follow its instructions.
After the creative phase type completes its exploration, the result will be in one of two categories:
Within a workflow: Create memory-bank/active/creative/creative-[question-name].md. The format is defined by the specific creative phase type that was loaded in Step 3 - follow its documentation instructions. Update memory-bank/active/tasks.md: mark this open question as explored, note the decision (or note that it's unresolved), and link to the creative document.
Standalone: Present the exploration results directly to the operator in the output format below. If a memory bank exists, also write the creative document to memory-bank/active/creative/ for future reference.
🚨 Printing this notice is NOT the end of this phase. After printing, continue immediately to the next step - do not stop.
Within a Niko workflow: Update memory-bank/active/progress.md to record completion of this creative phase exploration.
# Creative Result
✅ RESOLVED
**Open Question:** [the question]
**Approach:** [selected creative phase type]
**Decision:** [1-2 sentence summary of the chosen approach]
**Rationale:** [why this won over alternatives]
Documented in `memory-bank/active/creative/creative-[question-name].md`
# Creative Result
⚠️ UNRESOLVED
**Open Question:** [the question]
**Approach:** [selected creative phase type]
**Options Explored:**
- [Option A]: [brief summary + key tradeoff]
- [Option B]: [brief summary + key tradeoff]
**Why Unresolved:** [what's blocking a confident decision]
**Recommendation:** [if any - the agent's best guess with caveats]
Documented in `memory-bank/active/creative/creative-[question-name].md`
🚨 Execute this immediately after printing - do not stop between steps.
Within a Niko Workflow:
Commit all changes (creative document + memory bank updates) with chore: saving work before plan phase.
Standalone Mode:
You're done after presenting the results. Wait for operator input.