Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计提醒

eve-agent-native-design夏娃特工原生设计

Agent Skill

用于辅助界面设计、视觉规范、排版、配色、布局和交互体验优化。它适合让 Agent 根据产品场景整理页面结构、生成 UI 方案、检查视觉一致性或改进组件层级。使用时需要结合现有品牌、设计系统和用户任务,不应只堆装饰元素;涉及真实页面改动时,应通过截图或浏览器预览检查文本溢出、对齐和响应式表现。

总安装

5,191

周安装

223

GitHub Stars

公开资料未说明

下载量

1,820
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:eve-agent-native-design(夏娃特工原生设计)
来源仓库:https://github.com/incept5/eve-skillpacks
仓库路径:skills/eve-agent-native-design
安装命令:
npx skills add https://github.com/incept5/eve-skillpacks --skill eve-agent-native-design
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/incept5/eve-skillpacks --skill eve-agent-native-design

简介

eve-agent-native-design 为 Eve Horizon 平台设计以 Agent 为核心的应用程序。

  • 适用于新应用开发或评估现有应用是否支持 Agent 优先交互。
  • 使用时应遵循四大原则:Agent 与用户能力对等、CLI 为对等层、逻辑置于提示外。
  • 安装命令为 npx skills add https://github.com/incept5/eve-skillpacks --skill eve-agent-native-design。
  • 建议先加载 eve-fullstack-app-design 基础技能,再叠加 Agentic 特性。

SKILL.md

Agent-Native Design for Eve Horizon

Build applications where agents are first-class citizens — not afterthoughts.

When to Use

Load this skill when:

  • Designing a new application or API on Eve
  • Evaluating whether an existing app is agent-friendly
  • Adding features that agents should be able to use
  • Deciding between putting logic in code vs. in prompts
  • Choosing how to handle inter-agent communication

The Four Principles

1. Parity — Agents Can Do Everything Users Can

Every user action must have an agent-equivalent path.

On Eve: The CLI IS the parity layer. If a user can do it through eve..., an agent can too. When building your app, apply the same principle:

CheckHow
Can agents create/read/update/delete every entity?Map UI actions to CLI/API equivalents
Are there UI-only workflows?Expose them as API endpoints or CLI commands
Can agents discover what's available?Provide list operations for every entity type

CRUD Completeness: For every entity in your app, verify agents have Create, Read, Update, and Delete paths. Missing any one breaks parity.

2. Granularity — Atomic Primitives, Not Bundled Logic

Features emerge from agent loops, not monolithic tools.

Wrong: deploy_and_monitor(app) — bundles judgment into code Wrong: classify_and_organize_files(files) — agent should decide classification Right: eve build create, eve build run, eve env deploy, eve job follow — agent decides the sequence

On Eve: The manifest defines WHAT (services, pipelines), the agent decides HOW and WHEN to compose them.

Design test: To change behavior, do you edit prose (prompts/skills) or refactor code? If code — your tools aren't atomic enough.

3. Composability — New Features = New Prompts

When tools are atomic and parity exists, you add capabilities by writing prompts, not code.

Eve example: The eve-pipelines-workflows skill adds pipeline composition capability. No new CLI commands needed — the skill teaches agents to compose existing eve pipeline and eve workflow commands.

Your app: If adding a feature requires new API endpoints, you may be bundling logic. Consider whether existing primitives can be composed differently.

4. Emergent Capability — Agents Surprise You

Build atomic tools. Agents compose unexpected solutions. You observe patterns. Optimize common patterns. Repeat.

Eve example: Agents compose eve job create --parent + eve job dep add + depth propagation to build arbitrary work hierarchies. The platform didn't prescribe this — agents discovered it from atomic primitives.

Platform Capabilities for Agentic Apps

Beyond the four principles, Eve provides (or is building) specific primitives that make agentic apps dramatically simpler:

Job Attachments — Structured Context Passing

Pass plans, reports, and insights between agents without file gymnastics. Attach text documents (markdown, JSON, YAML) to jobs. Downstream agents read attachments from parent jobs. This solves 80% of the "agents passing structured context" problem.

Service Account Auth — Backend-to-API Communication

Use eve auth mint (today) or service accounts (emerging) to authenticate app backends. Every app with a backend needs a non-user token for API calls. Scoped permissions enforce least privilege.

Org Document Store — Persistent Agent Knowledge

Agents accumulate knowledge that outlives individual jobs: architecture reports, risk assessments, conventions. DB-backed with full-text search and agent-native search/replace editing via PATCH operations.

Web Chat — Two Mechanisms

Choose based on your needs:

  • Gateway Provider (Mechanism A): WebSocket to Eve gateway. Zero backend. Best for simple chat widgets and admin consoles.
  • Backend-Proxied (Mechanism B): App backend calls POST /internal/orgs/:id/chat/route. Full control over enrichment, storage, routing. Best for production SaaS.

Decision: If your app intercepts, enriches, or stores conversations → use B. Otherwise → use A.

Cross-Project Queries — Org-Level Intelligence

Portfolio views, dashboards, and any tool spanning multiple projects. Org-level endpoints eliminate N+1 API calls.

See references/eve-horizon-primitives.md for the full catalog with API schemas and priority ranking.

Eve-Specific Design Patterns

Files as Universal Interface

  • Agents know cat, grep, mv, mkdir
  • Use .eve/manifest.yaml as single source of truth — agents read and edit it
  • Agent configs live in repo files (agents.yaml, teams.yaml) — not hidden in databases
  • Directory structure = information architecture: {entity_type}/{entity_id}/content
  • Name files by purpose: {entity}.json, {type}.md, agent_log.md

Context Injection (Three Layers)

System prompts should include:

  1. Available resources — what exists, with counts: "12 notes in /notes, 3 projects"
  2. Capabilities — what agents can do: "Create, edit, tag, delete notes"
  3. Recent activity — what happened: "User created 'Project kickoff' 2 hours ago"

Eve injects EVE_API_URL, EVE_PROJECT_ID, EVE_ORG_ID, EVE_ENV_NAME into every environment. Skills provide domain vocabulary.

Explicit Completion Signals

  • Jobs return json-result with eve.status ("success", "failed", "waiting")
  • No heuristic completion detection — explicit signals always
  • Track progress at task level with phase transitions
  • Support shouldContinue for multi-step operations
  • Checkpoint state for resume on interruption

Dynamic Capability Discovery

  • eve job list discovers available work
  • eve agents list discovers available agents
  • Skills system auto-discovers capabilities at install time
  • Gateway routes messages to agents by slug — new agents are instantly addressable
  • Prefer runtime discovery (list_available_types()) over static tool-per-endpoint mapping

Agent-to-UI Communication

  • Event types: thinking, toolCall, toolResult, textResponse, statusChange
  • No silent actions — changes visible immediately
  • Show progress during execution, not just results
  • Consider ephemeralToolCalls for noisy internal operations

The Success Checklist

Architecture:

  • Every UI action has a CLI/API equivalent (parity)
  • Every entity has full CRUD (completeness)
  • Tools do one thing; agent decides composition (granularity)
  • Adding capability = adding a skill/prompt, not code (composability)
  • Agent can handle requests you didn't explicitly design for (emergent)

Implementation:

  • Manifest and config files are the source of truth (files as interface)
  • System prompt includes resources, capabilities, and recent activity (context injection)
  • Completion is explicit, not heuristic (json-result with eve.status)
  • Agent actions reflect immediately in UI (visibility)
  • Dynamic discovery works for new capabilities (extensibility)

If building an app with a backend:

  • Service account auth configured for API access
  • Web chat mechanism chosen (gateway vs. proxied)
  • Job attachments used for structured inter-agent context
  • Org document store for persistent knowledge (when available)

Anti-Patterns

Anti-PatternFix
Agent as router onlyLet agents act, not just route
Workflow-shaped tools (analyze_and_deploy)Break into atomic primitives
UI-only actionsMaintain parity — add CLI/API paths
Context starvationInject resources via skills and env vars
Gates without reasonDefault to open; keep primitives available
Heuristic completionUse explicit completion signals
Static API mappingUse dynamic capability discovery
Stuffing context in job descriptionsUse job attachments for structured docs
Per-user tokens for backendsUse service accounts / eve auth mint
Polling for eventsUse webhooks when available (emerging)

Reference

See references/eve-horizon-primitives.md for the full platform primitives catalog with API schemas, DB designs, and implementation priority ranking.

For the source philosophy: ../eve-horizon/docs/ideas/agent-native-design.md For platform primitives analysis: ../eve-horizon/docs/ideas/platform-primitives-for-agentic-apps.md

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

35.58%
按下载量换算648

Claude

30.07%
按下载量换算547

Cursor

17.08%
按下载量换算311

Gemini CLI

8.3%
按下载量换算151

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills