← 返回 Skills 市场
occupythemilkyway

Horus Lite

作者 OccupyTheMilkyWay · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ⚠ suspicious
34
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install horus-lite
功能描述
Horus Lite -- Meeting Intelligence. Paste meeting notes or a transcript and get a clean action item list instantly. Free tier. The only meeting skill on Claw...
使用说明 (SKILL.md)

Horus Lite -- Meeting Intelligence

Horus sees everything. Paste your messy meeting notes and get clean, assigned action items in seconds.

Free vs Standard vs Pro

Feature Horus Lite (Free) Horus Standard ($5) Horus Pro ($9)
Action items Yes (list) Yes (with owners + deadlines) Yes (full tracker)
Meeting summary No Yes (full) Yes + exec brief
Decisions log No Yes Yes
Follow-up email No Yes (draft) Yes (stakeholder-specific)
Next agenda No No Yes
Risk/blocker flags No No Yes
Save to file No Yes (.md) Yes (.md)

Upgrade: Horus Standard -> ko-fi.com/occupythemilkyway ($5) Bundle: All 5 Egyptian skills for $29 -> ko-fi.com/occupythemilkyway


Step 1 -- Install

pip3 install rich --break-system-packages --quiet

Step 2 -- Parse meeting notes

import os, sys, re
from rich.console import Console
from rich.panel import Panel
from rich.rule import Rule

console = Console()

NOTES = os.environ.get("MEETING_NOTES", "").strip()
if not NOTES:
    console.print(Panel(
        "[red]MEETING_NOTES is required.[/red]\
\
Paste the full text of your meeting notes or transcript.",
        title="Setup Error", border_style="red"
    ))
    sys.exit(1)

word_count = len(NOTES.split())
line_count = len(NOTES.splitlines())

console.print()
console.print(Panel.fit(
    f"[bold yellow]👁️  Horus Lite -- Meeting Intelligence[/bold yellow]\
"
    f"Notes: [cyan]{word_count} words[/cyan] / [cyan]{line_count} lines[/cyan]\
"
    f"[dim]Free tier -- action items extraction[/dim]",
    border_style="yellow"
))
console.print(Rule("[yellow]Analysing meeting...[/yellow]"))
print(f"\
=== MEETING NOTES ===\
{NOTES}\
=== END NOTES ===")

Step 3 -- Extract action items

Read the meeting notes above and produce:

Action Items List: Extract EVERY task, commitment, or follow-up mentioned. Format each as:

- [ ] [Action] — Owner: [Name or "TBD"] | Due: [Date or "TBD"]

Then add:

Quick Summary (2-3 sentences): What was the meeting about and what's the most important outcome?

Be thorough — catch every "I'll", "we need to", "someone should", "by next week", "action item" phrasing.


Step 4 -- Upsell

from rich.console import Console
from rich.panel import Panel
console = Console()
console.print()
console.print(Panel(
    "[bold yellow]Horus Standard ($5)[/bold yellow] adds a full meeting summary, decisions log, and a ready-to-send follow-up email.\
"
    "[bold magenta]Horus Pro ($9)[/bold magenta] adds stakeholder-specific briefs, next meeting agenda, risk flags, and saves to file.\
\
"
    "Upgrade: [bold cyan]ko-fi.com/occupythemilkyway[/bold cyan]",
    title="[yellow]Want the full meeting brief?[/yellow]",
    border_style="yellow"
))
安全使用建议
Review the skill before installing if you plan to paste confidential meeting notes. Use it only with transcripts you are comfortable having echoed in agent output/logs, or modify the instructions so it outputs only summaries and action items.
能力评估
Purpose & Capability
Processing pasted meeting transcripts is coherent with the stated purpose, but the reported raw output of MEETING_NOTES goes beyond producing only extracted action items or summaries.
Instruction Scope
The instruction to print the full meeting-notes variable creates under-scoped handling of potentially confidential input and is not necessary for the core summarization task.
Install Mechanism
No artifact evidence supplied indicates unusual install behavior, package execution hooks, dependency abuse, or hidden installation steps.
Credentials
Meeting transcripts often contain private business or personal information, and echoing them to stdout can expose them in terminal logs, chat history, or platform telemetry.
Persistence & Privilege
No evidence indicates persistence, privilege escalation, background workers, credential access, or external data exfiltration.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install horus-lite
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /horus-lite 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
Initial release of Horus Lite – Meeting Intelligence: - Instantly extracts clean, assigned action items from pasted meeting notes or transcripts. - Free tier: focuses on generating a comprehensive action item list. - Supports input of raw meeting notes, bullets, or transcripts via the `MEETING_NOTES` environment variable. - Provides a concise meeting summary alongside action items. - Highlights upgrade options to Horus Standard and Pro for additional meeting features.
元数据
Slug horus-lite
版本 1.0.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 1
常见问题

Horus Lite 是什么?

Horus Lite -- Meeting Intelligence. Paste meeting notes or a transcript and get a clean action item list instantly. Free tier. The only meeting skill on Claw... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 34 次。

如何安装 Horus Lite?

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

Horus Lite 是免费的吗?

是的,Horus Lite 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Horus Lite 支持哪些平台?

Horus Lite 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Horus Lite?

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

💬 留言讨论