Run any Skill in Manus
with one click
with one click
Run any Skill in Manus with one click
Get Started$pwd:
$ git log --oneline --stat
stars:10
forks:4
updated:May 6, 2026 at 09:01
SKILL.md
[HINT] Download the complete skill directory including SKILL.md and all related files
| name | feature-plan |
| description | 새로운 어드민 기능을 코딩하기 전에 구조화된 구현 계획을 작성합니다. 기능을 처음부터 시작할 때 사용하세요. |
| argument-hint | <기능명> |
| disable-model-invocation | true |
다음 기능의 구현 계획을 작성하세요: $ARGUMENTS
<entity>: {
all: ["<entity>"] as const,
list: (filters) => [..., "list", filters] as const,
detail: (id) => [..., "detail", id] as const,
}
features/<entity>/
├── api/ # useXQuery.ts, useXMutation.ts
├── hooks/ # useXList.ts, useXDetail.ts
├── ui/ # Table, Modal, Filter + styles
├── types/ # entity.ts
└── index.ts
pages/
└── <Entity>ListPage.tsx, <Entity>DetailPage.tsx
shared/api/queryKeys.ts # 키 추가
구현을 진행하기 전에 반드시 사용자 승인을 기다리세요.