Skip to main content
在 Manus 中运行任何 Skill
一键导入
GitHub 仓库

sunrise

sunrise 收录了来自 human-centric-engineering 的 13 个 skills,并提供仓库级职业覆盖和站内 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