Agent Skillsevolution-foundation/evo-nexus › create-heartbeat

create-heartbeat

GitHub

用于创建 EvoNexus 系统中的心跳代理,指导用户配置代理选择、调度间隔、唤醒触发器及决策提示词,并将配置写入 YAML 文件进行验证。

.claude/skills/create-heartbeat/SKILL.md evolution-foundation/evo-nexus

Trigger Scenarios

用户要求创建心跳或定时检查任务 将手动状态检查转化为自动协议运行

Install

npx skills add evolution-foundation/evo-nexus --skill create-heartbeat -g -y
More Options

Non-standard path

npx skills add https://github.com/evolution-foundation/evo-nexus/tree/main/.claude/skills/create-heartbeat -g -y

Use without installing

npx skills use evolution-foundation/evo-nexus@create-heartbeat

指定 Agent (Claude Code)

npx skills add evolution-foundation/evo-nexus --skill create-heartbeat -a claude-code -g -y

安装 repo 全部 skill

npx skills add evolution-foundation/evo-nexus --all -g -y

预览 repo 内 skill

npx skills add evolution-foundation/evo-nexus --list

SKILL.md

Frontmatter
{
    "name": "create-heartbeat",
    "description": "Create a new heartbeat (proactive agent scheduled with a decision prompt) for EvoNexus. Guides the user through picking an agent, setting interval, wake triggers, and the decision prompt that governs when the agent acts. Writes to config\/heartbeats.yaml with pydantic validation. Use when the user says 'create a heartbeat', 'make X agent proactive', 'wake Y every 4h', 'automate X to check state and act', or wants to turn a manual state check into a scheduled protocol-run."
}

Create Heartbeat

Auth note: For any API calls use from dashboard.backend.sdk_client import evo — auto-handles URL + auth, no Bearer token needed in code.

Create a new heartbeat — a proactive agent that wakes on a schedule, runs the 9-step protocol, and decides whether to act.

When to use

Use heartbeats when:

  • The agent should check state and conditionally act (e.g., Atlas checks Linear for blockers)
  • You want no work when state is calm (vs routines which always run)
  • The same topic is picked from an inbox of tickets (heartbeats query tickets in step 3)

Don't use heartbeats for:

  • Deterministic scheduled jobs (use a routine)
  • One-off actions (use a skill or ticket)

Step 1: Understand the trigger

Ask the user:

  1. Which agent? List agents from .claude/agents/*.md. Suggest by domain:
    • atlas-project — project tracking (Linear, GitHub)
    • flux-finance — payments, billing
    • zara-cs — support queue
    • pulse-community — community sentiment
    • pixel-social-media — scheduled posting
  2. How often? Interval in minutes / hours. Min 60s. Typical: 2h, 4h, 6h.
  3. What state to check? This becomes the decision_prompt.
  4. Link to a goal? Optional goal_id for context injection. Skip if no goal fits.

Step 2: Compose the decision prompt

The decision_prompt is injected into the agent's context and asks the agent:

"Given the current state of [X], should you act? If yes, do the work and report. If no, explain briefly and skip."

Good decision prompts are specific:

✅ "Check Linear for issues in In Progress assigned to an unresponsive person (> 48h inactive) or blocked > 24h. If any, create action items and notify Davidson. Otherwise skip."

❌ "Check stuff" (too vague — will always act or always skip randomly)

Step 3: Pick wake triggers

Default: interval + manual. Optional:

  • new_task — wake when a ticket is assigned
  • mention — wake when @<agent-slug> appears in a comment
  • approval_decision — wake when an approval affects this agent

30s debounce prevents multiple triggers coalescing into multiple runs.

Step 4: Required secrets (optional)

If the decision/work requires API keys (Stripe, Linear, etc.), list them as required_secrets. They'll be validated at startup (presence, not value).

Step 5: Write to YAML

Append the new heartbeat to config/heartbeats.yaml:

heartbeats:
  - id: <agent-slug>-<interval>h
    agent: <agent-slug>
    interval_seconds: <N>
    max_turns: 10
    timeout_seconds: 600
    lock_timeout_seconds: 1800
    wake_triggers: [interval, manual]
    enabled: false            # opt-in — user enables after testing
    goal_id: null
    required_secrets: []
    decision_prompt: |
      <the prompt from step 2>

Validate with make heartbeat-lint before suggesting the user enables.

Step 6: Guide the user

After writing:

  1. Run make heartbeat-lint to validate
  2. Test manually: UI /scheduler → Heartbeats tab → Run Now on this heartbeat
  3. Review the run in workspace/ADWs/logs/heartbeats/<id>-<date>.jsonl
  4. If the decision quality is right, flip enabled: true and restart dashboard

Notes

  • Source of truth is the YAML. UI CRUD rewrites it atomically (temp file + rename).
  • Delete a heartbeat via /scheduler → Heartbeats → Delete, or remove the entry from YAML and restart.
  • Heartbeat cost appears in /costs once runs start generating heartbeat_runs rows.

Related: .claude/rules/heartbeats.md, .claude/rules/tickets.md (inbox), .claude/rules/goals.md (context).

Version History

  • 7f5dd76 Current 2026-07-25 04:52

Same Skill Collection

.claude/skills/create-agent/SKILL.md
.claude/skills/create-command/SKILL.md
.claude/skills/create-goal/SKILL.md
.claude/skills/create-integration/SKILL.md
.claude/skills/create-routine/SKILL.md
.claude/skills/create-ticket/SKILL.md
.claude/skills/cs-ticket-triage/SKILL.md
.claude/skills/data-build-dashboard/SKILL.md
.claude/skills/data-create-viz/SKILL.md
.claude/skills/data-explore/SKILL.md
.claude/skills/data-statistical-analysis/SKILL.md
.claude/skills/data-validate/SKILL.md
.claude/skills/db-mongo/SKILL.md
.claude/skills/db-mysql/SKILL.md
.claude/skills/db-postgres/SKILL.md
.claude/skills/db-redis/SKILL.md
.claude/skills/dev-ai-slop-cleaner/SKILL.md
.claude/skills/dev-ask/SKILL.md
.claude/skills/dev-autopilot/SKILL.md
.claude/skills/dev-cancel/SKILL.md
.claude/skills/dev-ccg/SKILL.md
.claude/skills/dev-configure-notifications/SKILL.md
.claude/skills/dev-deep-dive/SKILL.md
.claude/skills/dev-deep-interview/SKILL.md
.claude/skills/dev-deepinit/SKILL.md
.claude/skills/dev-external-context/SKILL.md
.claude/skills/dev-learner/SKILL.md
.claude/skills/dev-mcp-setup/SKILL.md
.claude/skills/dev-plan/SKILL.md
.claude/skills/dev-project-session-manager/SKILL.md
.claude/skills/dev-ralph/SKILL.md
.claude/skills/dev-ralplan/SKILL.md
.claude/skills/dev-release/SKILL.md
.claude/skills/dev-remember/SKILL.md
.claude/skills/dev-sciomc/SKILL.md
.claude/skills/dev-skillify/SKILL.md
.claude/skills/dev-team/SKILL.md
.claude/skills/dev-trace/SKILL.md
.claude/skills/dev-ultraqa/SKILL.md
.claude/skills/dev-verify/SKILL.md
.claude/skills/dev-visual-verdict/SKILL.md
.claude/skills/discord-create-channel/SKILL.md
.claude/skills/discord-get-messages/SKILL.md
.claude/skills/discord-list-channels/SKILL.md
.claude/skills/discord-manage-channel/SKILL.md
.claude/skills/discord-send-message/SKILL.md
.claude/skills/fin-audit-support/SKILL.md
.claude/skills/fin-close-management/SKILL.md
.claude/skills/fin-daily-pulse/SKILL.md

Metadata

Files
0
Version
7f5dd76
Hash
617b7bbf
Indexed
2026-07-25 04:52

inicio - Wiki
Copyright © 2011-2026 iteam. Current version is 2.155.2. UTC+08:00, 2026-08-20 06:40
浙ICP备14020137号-1 $mapa de visitantes$