Skip to main content
Manus에서 모든 스킬 실행
원클릭으로
GitHub 저장소

sunrise

sunrise에는 human-centric-engineering에서 수집한 skills 13개가 있으며, 저장소 수준 직업 범위와 사이트 내 skill 상세 페이지를 제공합니다.

수집된 skills
13
Stars
3
업데이트
2026-06-24
Forks
0
직업 범위
직업 카테고리 5개 · 100% 분류됨
저장소 탐색

이 저장소의 skills

orchestration-capability-builder
소프트웨어 개발자

Expert capability builder for Sunrise orchestration. Creates custom agent capabilities (tools) that let agents call APIs, look up data, process refunds, send notifications, or perform any external action. Handles Zod validation, OpenAI-compatible function definitions, execution handlers, registry wiring, and database setup via the 4-step pipeline: TypeScript class, registry, DB row, agent binding. Use when an agent needs a new tool, needs to call an external service, or needs to perform actions beyond conversation.

2026-06-24
orchestration-solution-builder
소프트웨어 개발자

End-to-end orchestration solution builder for Sunrise. Takes a business problem — "build me a customer support chatbot", "I need an AI assistant that can look up orders and process refunds", "create a content review pipeline" — and produces everything needed: providers, agents, capabilities, knowledge base, and workflows. Handles the full implementation pipeline from problem description to running system. Use when building complete agentic solutions, implementing an architecture from agent-architect, or setting up a new agent system from scratch.

2026-06-24
testing
소프트웨어 품질 보증 분석가·테스터

Testing lens and quick patterns reference for Sunrise. Apply this skill whenever you create, modify, or audit Vitest tests — unit, integration, or component. Its purpose is to enforce an anti-green-bar mindset (tests must verify what the code *does*, not what mocks return) and route work into the right tool: `/test-plan` → `/test-write` → `/test-review` → `/test-fix` for branch- or module-scoped work, the `test-engineer` agent for spawn-based writing, or hands-on patterns for one-off tests. Use when the user asks to add, write, audit, fix, or review tests.

2026-05-29
orchestration-agent-architect
소프트웨어 개발자

Architect for Sunrise's agent orchestration system. Designs agentic solutions by selecting from 21 design patterns, composing multi-pattern architectures, and mapping designs to Sunrise's orchestration primitives (agents, capabilities, workflows, knowledge bases). Use when a developer wants to design, plan, or debug an AI agent system — whether they say "build me a chatbot", "I need an agent that can look up orders", "design an AI pipeline", or "why is my agent hallucinating". This skill handles the DESIGN phase; the orchestration-solution-builder skill handles IMPLEMENTATION.

2026-05-27
orchestration-knowledge-builder
소프트웨어 개발자

Expert knowledge base builder for Sunrise orchestration. Sets up document ingestion, chunking, embeddings, and vector search so agents can answer questions grounded in real data instead of hallucinating. Handles the full lifecycle: upload documents (MD, PDF, EPUB, DOCX), chunk, generate embeddings, and scope knowledge to specific agents. Use when agents need to search company docs, product information, FAQs, or any document corpus.

2026-05-27
orchestration-workflow-builder
소프트웨어 개발자

Expert workflow builder for Sunrise orchestration. Composes multi-step agent pipelines as workflow DAGs — routing requests to different agents, chaining LLM calls, adding human approval gates, running parallel branches, integrating RAG retrieval, and bolting on post-hoc supervisor audit + deterministic Markdown reporting. Uses 19 step types, template interpolation, error strategies, run-time toggles, and budget enforcement. Use when building multi-step agent pipelines, adding approval flows, connecting multiple agents in a sequence, or adding an honest end-of-workflow audit.

2026-05-27
deployment-guide
네트워크·컴퓨터 시스템 관리자

Deployment guide generator for Sunrise. Creates platform-specific deployment documentation with environment variable checklists, database setup, and troubleshooting guides. Use when deploying to new platforms or updating deployment docs.

2026-05-14
docs-writer
기술 작가

Documentation writer for Sunrise's .context/ substrate. Creates and updates documentation following established patterns: actionable over descriptive, project-specific quirks, anti-patterns first, verified against actual code. Use when adding documentation for new features or updating existing docs.

2026-05-14
component-builder
소프트웨어 개발자

Component builder for Sunrise. Creates reusable React components following shadcn/ui patterns: TypeScript interfaces, accessibility attributes, Tailwind CSS styling, Server Components by default (`'use client'` only when needed). Use when creating new components under `components/` or refactoring existing ones.

2026-05-14
email-designer
웹 개발자

Email template designer for Sunrise. Builds React Email templates that render reliably across Gmail, Outlook, Apple Mail, and Yahoo: inline styles or `pixelBasedPreset` Tailwind, mobile-responsive 600px max-width, clear single-CTA structure, dark-mode safe. Use when creating new templates under `emails/` or updating existing ones (welcome, verify-email, reset-password, invitation, contact-notification, workflow-notification, escalation-notification).

2026-05-14
page-builder
소프트웨어 개발자

Page builder for Sunrise. Creates new pages following Next.js 16 App Router patterns: route groups, layouts, metadata, async params, Server Components by default, and the project's auth conventions. Knows the four top-level URL segments — `(auth)`, `(protected)`, `(public)` route groups plus the `admin/` regular folder. Use when creating new pages, route groups, or admin sub-routes.

2026-05-14
form-builder
소프트웨어 개발자

Form builder for Sunrise. Creates validated forms using `react-hook-form` + Zod + shadcn/ui following the established pattern: `mode: 'onTouched'`, all fields default-valued, `apiClient` for non-auth submits / `authClient` for auth flows, `<FormError>` for per-field errors, and `<FieldHelp>` ⓘ popovers on every non-trivial field. Use when creating new forms under `components/forms/` or modifying existing ones.

2026-05-14
api-builder
소프트웨어 개발자

Canonical recipe for building API endpoints in Sunrise. Produces routes that match the codebase pattern: Zod validation, `withAuth` / `withAdminAuth` wrappers from `lib/auth/guards.ts`, rate limiting on mutating endpoints, standardised responses, structured route logging, and the standard error envelope. Use when creating new routes under `app/api/v1/` or modifying existing ones. Defers test writing to the `testing` skill / `/test-write`.

2026-05-14