← 返回 Skills 市场
fuzzyb33s

Ghostty — Your Always-On Digital Self

作者 Fuzzyb33s · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ⚠ suspicious
75
总下载
0
收藏
1
当前安装
1
版本数
在 OpenClaw 中安装
/install ghostty
功能描述
Your always-on digital self — monitors all your communication channels in parallel, learns your writing style, drafts replies in your voice, and routes them...
使用说明 (SKILL.md)

Ghostty — Your Always-On Digital Self

Ghostty is an always-on AI proxy that acts as you when you're unavailable. It watches your channels, learns your voice, drafts replies, and escalates intelligently.

Core Loop

1. MONITOR   → Spawn sub-agents watching email, calendar, Slack, WhatsApp
2. LEARN     → Build voice profile from your sent messages (ongoing)
3. DRAFT     → When meaningful event detected, draft reply in YOUR voice
4. ROUTE     → Send via the right channel (urgent → WhatsApp, formal → email)
5. ESCALATE  → Only interrupt you when it truly matters

Step 1 — First Time Setup: Build Your Voice Profile

Before Ghostty can draft as you, it needs to learn your style. Run the profile builder:

scripts/profile_builder.py --source \x3Cemail-folder or messages-export> --output ghostty/voice-profile.md

The builder analyzes:

  • Average sentence length and structure
  • Common phrases and fillers
  • Greeting and sign-off patterns
  • Formality level (1-10)
  • Preferred punctuation style
  • Tone indicators (confident, warm, terse, etc.)

Store the profile at ghostty/voice-profile.md in your workspace. Update it monthly as your style evolves.

Step 2 — Set Up Channel Monitors

Spawn a persistent sub-agent for each channel you want Ghostty to watch. Use mode="session" so they run continuously.

Email (Gmail/Outlook):

sessions_spawn(
  task="You monitor the email inbox for important messages. 
  Rules: (1) Only act on emails from people in the PRIORITY_SENDERS list in ghostty/config.md, 
  (2) For each important email, draft a reply using the voice profile at ghostty/voice-profile.md, 
  (3) Send the draft to the escalation channel (WhatsApp/Signal) with [APPROVE] prefix for one-click send, 
  (4) Mark as TODO in ghostty/pending-drafts.md
  Run continuously. Check every 15 minutes.",
  runtime="subagent",
  mode="session",
  label="ghostty-email"
)

WhatsApp/Signal:

sessions_spawn(
  task="You monitor WhatsApp messages. 
  Rules: (1) Only respond to DND-mode messages or explicit @ghostty mentions, 
  (2) Draft replies using voice profile at ghostty/voice-profile.md, 
  (3) If sender is in PRIORITY_SENDERS, send directly. Otherwise queue for approval.
  Run continuously.",
  runtime="subagent",
  mode="session",
  label="ghostty-whatsapp"
)

Calendar:

sessions_spawn(
  task="You monitor the Google Calendar / Outlook calendar.
  Rules: (1) Alert via WhatsApp 1 hour before any calendar event, 
  (2) If a meeting is about to start and you haven't joined, alert again, 
  (3) If someone invites you to a meeting and you're not available (based on ghostty/availability.md), draft a polite decline using your voice profile.
  Run continuously.",
  runtime="subagent",
  mode="session",
  label="ghostty-calendar"
)

Step 3 — Escalation Rules

Edit ghostty/config.md to define:

  • PRIORITY_SENDERS — list of people who always get a response
  • URGENT_KEYWORDS — words that trigger immediate WhatsApp alert
  • IGNORE_SENDERS — newsletters, bots, noise to skip
  • RESPONSE_WINDOW_MINUTES — how long before drafting (default: 60)
  • APPROVAL_CHANNEL — where to send drafts for approval (default: WhatsApp)

Step 4 — Drafting in Your Voice

When a monitor detects something worth responding to:

1. Read ghostty/voice-profile.md — get style params
2. Read ghostty/config.md — get context (relationship, ongoing projects, preferences)
3. Fetch the incoming message — understand what it's about
4. Draft reply — apply voice profile (tone, length, phrases, formality)
5. If sender is PRIORITY — send directly
6. If not — queue to ghostty/pending-drafts.md and send preview to WhatsApp

Voice drafting rules:

  • Short replies: aim for same length as you typically write
  • Matching tone: if you use "Hey mate" don't use "Dear Sir"
  • Reference context: mention anything ongoing (projects, prior emails)
  • Signature: include your sign-off style from the voice profile

Step 5 — One-Click Approval

When a draft is sent to WhatsApp:

[Ghostty] Reply to John re: Q4 proposal

Hey John, yeah happy to jump on Tuesday — 3pm works from my end. 
I'll send over the deck beforehand so we can dive straight in.

[APPROVE to send] [EDIT then send] [SKIP]

Respond with "APPROVE" on WhatsApp → Ghostty sends the email/WhatsApp reply.

File Structure

ghostty/
├── voice-profile.md      # Your style fingerprint — generated by profile_builder.py
├── config.md             # Priority senders, keywords, escalation rules
├── availability.md       # When you're reachable, timezone, DND hours
├── pending-drafts.md     # Queue of drafts awaiting approval
└── sent-log.md           # History of what Ghostty sent on your behalf

Reference Files

  • references/voice-profile.md — detailed voice profiling methodology
  • references/channel-monitors.md — channel-specific setup (Gmail, WhatsApp, Calendar, Slack)
  • references/draft-engine.md — how to draft contextually in your voice
  • references/delivery-router.md — escalation logic, urgency routing, approval flows
  • scripts/profile_builder.py — analyze sample messages, output voice profile markdown

Safety

  • Ghostty never sends without approval UNLESS the sender is in PRIORITY_SENDERS
  • All sent drafts are logged in ghostty/sent-log.md
  • DND hours from ghostty/availability.md are respected — no pings during sleep hours
  • Review ghostty/pending-drafts.md at least once daily
安全使用建议
This skill will monitor multiple private channels and needs sensitive credentials (Gmail/IMAP, Google Calendar, Slack token, WhatsApp/Signal gateway) and local secret files, but the package metadata does not declare those requirements — that mismatch is a red flag. Before installing: (1) ask the publisher for an explicit list of required env vars/config paths and for a privacy/data-flow description (where drafts, sent logs, and profiles are stored and who/what can read them); (2) review scripts/profile_builder.py and any other code locally (don’t run it on real data until reviewed); (3) use least-privilege test accounts or service credentials (not your primary accounts) and avoid giving long-lived refresh tokens; (4) consider running in an isolated/sandboxed environment and restrict network access if possible; (5) confirm the approval and auto-send rules and whether you can disable autonomous/persistent sessions; and (6) if you are uncomfortable with continuous monitoring of personal communications, do not install until the author fixes the missing metadata and provides assurances (and preferably a security/privacy audit).
能力标签
requires-oauth-token
能力评估
Purpose & Capability
The name/description claim an always-on proxy for email, calendar, Slack, WhatsApp, Signal, etc. The included docs and prompts explicitly require Gmail/IMAP credentials, Google Calendar credentials, Slack bot token, WhatsApp/Signal gateways, and local secret files (ghostty/secrets/*.env). However the registry metadata declares no required env vars or config paths. Requiring broad messaging and calendar credentials is proportionate to the stated purpose, but not declaring them in metadata is an incoherence that hides the true credential footprint.
Instruction Scope
SKILL.md and the reference files instruct the agent to spawn persistent sub-agents (session mode) that continuously read inboxes, message histories, calendar events, and local voice-profile/config files and write pending-drafts and sent-log files. Instructions reference secret files (ghostty/secrets/gmail.env, calendar.env, slack.env) and fallback behaviors (IMAP). They also include operational rules (e.g., 'Never reveal you are an AI') and approval flows. The instructions therefore require continuous access to private messages and credentials; that scope is appropriate for the feature but is broader than the declared skill metadata and grants substantial data access.
Install Mechanism
No install spec — instruction-only with one included Python script (profile_builder.py). No external downloads or obscure URLs. The script reads local exported message files and writes a markdown profile; it does not show network exfiltration code. Installation risk is low compared to packages that fetch remote binaries, but the provided script will be executed on local data and should be reviewed before running.
Credentials
The skill needs multiple sensitive credentials to function (Gmail OAuth/IMAP creds, Google Calendar OAuth, Slack bot token, WhatsApp/Signal gateway config) and expects secret files under ghostty/secrets/*.env — yet the skill metadata lists no required env vars or config paths and has no declared primary credential. This mismatch hides required secrets. Requesting these credentials is proportionate to an always-on proxy, but failing to declare them is a red flag for transparency and least privilege.
Persistence & Privilege
The skill instructs spawning persistent subagents running in 'session' mode that poll/monitor channels continuously and keep state in local files (pending-drafts.md, sent-log.md, calendar-state.md). While 'always' is false, autonomous invocation + persistent background sessions implies long-lived agent activity with broad data access. Combined with undisclosed credential needs, this increases the blast radius if misconfigured or malicious.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install ghostty
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /ghostty 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
- Initial release of Ghostty: your always-on digital self for communication management. - Monitors email, calendar, Slack, WhatsApp, Signal, and Telegram in parallel. - Learns your writing style by analyzing your sent messages to create a personal voice profile. - Drafts replies in your unique voice and routes them to the appropriate channel. - Supports urgent escalation, prioritization, and one-click approval flows. - Configurable escalation rules, sender priorities, and notification preferences.
元数据
Slug ghostty
版本 1.0.0
许可证 MIT-0
累计安装 1
当前安装数 1
历史版本数 1
常见问题

Ghostty — Your Always-On Digital Self 是什么?

Your always-on digital self — monitors all your communication channels in parallel, learns your writing style, drafts replies in your voice, and routes them... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 75 次。

如何安装 Ghostty — Your Always-On Digital Self?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install ghostty」即可一键安装,无需额外配置。

Ghostty — Your Always-On Digital Self 是免费的吗?

是的,Ghostty — Your Always-On Digital Self 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Ghostty — Your Always-On Digital Self 支持哪些平台?

Ghostty — Your Always-On Digital Self 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Ghostty — Your Always-On Digital Self?

由 Fuzzyb33s(@fuzzyb33s)开发并维护,当前版本 v1.0.0。

💬 留言讨论