Token导航 LogoToken导航TokenDH.com
效率需要联网clawhub未标认证来源可访问clear审计提醒

partycraftpartycraft 效率

Agent Skill

partycraft 用于补充效率相关能力,适合在 OpenClaw 中需要让 Agent 承接效率相关任务时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

12,442

周安装

529

GitHub Stars

公开资料未说明

下载量

4,359
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:partycraft(partycraft 效率)
来源仓库:https://github.com/bytesagain-lab/partycraft
安装命令:
openclaw skills install partycraft
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

ClawHubOpenClaw
openclaw skills install partycraft

简介

规划活动的预算、宾客名单和时间表。在组织婚礼、协调生日、管理供应商、起草邀请函时使用。

SKILL.md

version
2.0.0
name
Event Planner
description
Plan events with budgets, guest lists, and timelines. Use when organizing weddings, coordinating birthdays, managing vendors, drafting invitations.
author
BytesAgain
homepage
https://bytesagain.com
source
https://github.com/bytesagain/ai-skills

PartyCraft — 活动策划助手

PartyCraft is a full-featured event planning assistant that runs entirely from the command line. Create events (weddings, birthdays, corporate gatherings, parties), manage budgets, track tasks with completion status, maintain guest lists with RSVP tracking, view countdown timelines, and generate suggested checklists by event type. All data is stored locally in JSON format.

Commands

CommandDescription
partycraft create <name> <date> [type]Create a new event. Types: wedding, birthday, corporate, party, general (default)
partycraft listList all events with task progress, guest count, and budget
partycraft budget <event_id> <amount>Set or update the budget for an event
partycraft task <event_id> add <text>Add a task to an event
partycraft task <event_id> done <number>Mark a task as complete by its number
partycraft task <event_id> listList all tasks for an event with ✅/⬜ status
partycraft guest <event_id> add <name>Add a guest to an event
partycraft guest <event_id> listList all guests with RSVP status
partycraft timeline <event_id>Show countdown, task progress, and guest count for an event
partycraft checklist [type]Show a suggested checklist for an event type (wedding/birthday/corporate/general)
partycraft infoShow version information
partycraft helpShow usage help

Data Storage

All data is stored locally in ~/.partycraft/:

  • events.json — Main data file containing all events as a JSON array. Each event object includes:

- id — Unix timestamp at creation (unique identifier) - name — Event name - date — Event date in YYYY-MM-DD format - type — Event type (wedding/birthday/corporate/party/general) - budget — Budget amount (numeric) - tasks — Array of {text, done} objects - guests — Array of {name, rsvp} objects - created — Creation date

The directory is created automatically on first run. The events.json file is initialized as an empty array [] if it doesn't exist.

Requirements

  • bash (any modern version)
  • python3 (standard library only — uses json, time, datetime)
  • No API keys, no network access, no external dependencies

When to Use

  1. Planning a wedding — Create the event, use checklist wedding for a suggested task list (venue, catering, photographer, flowers, seating, music, cake, rehearsal dinner), add tasks, track guest RSVPs, and set the budget.
  2. Organizing a birthday party — Create a birthday event, get a suggested checklist (theme, invitations, cake, decorations, games, food, party favors), add and track tasks as you complete them.
  3. Managing a corporate event — Create a corporate event with objectives, agenda, AV equipment, catering, and name badges tracked as tasks. Monitor completion with task list.
  4. Tracking event countdown — Use timeline <id> to see how many days remain, get warnings when less than a week out (⚠️), and monitor task completion percentage.
  5. Managing guest lists — Add guests with guest <id> add <name>, view the full list with RSVP status, and track headcount alongside budget and task progress in list.

Examples

# Create a wedding event
partycraft create "Alice & Bob Wedding" 2025-06-15 wedding
# Event created: Alice & Bob Wedding (wedding) on 2025-06-15

# List all events with progress summary
partycraft list
# Your Events:
# --------------------------------------------------
#   [1710500000] Alice & Bob Wedding - 2025-06-15 (wedding)
#       Tasks: 0/0 | Guests: 0 | Budget: $0

# Set the budget
partycraft budget 1710500000 50000
# Budget set to $50000 for: Alice & Bob Wedding

# Add tasks
partycraft task 1710500000 add "Book venue"
# Task added: Book venue
partycraft task 1710500000 add "Send invitations"
# Task added: Send invitations

# Mark a task as done
partycraft task 1710500000 done 1
# Task completed: Book venue

# View tasks with status
partycraft task 1710500000 list
#   ✅ 1. Book venue
#   ⬜ 2. Send invitations

# Add guests
partycraft guest 1710500000 add "Charlie"
# Guest added: Charlie

# View the timeline countdown
partycraft timeline 1710500000
# Timeline for: Alice & Bob Wedding (2025-06-15)
# ----------------------------------------
#   89 days until event
#   Tasks: 1/2 complete
#   Guests: 1 invited
#   📋 One month out. Confirm details.

# Get a suggested checklist for a birthday party
partycraft checklist birthday
# Suggested Checklist for: birthday
#   □ Choose theme
#   □ Send invitations
#   □ Order cake
#   □ Buy decorations
#   □ Plan activities/games
#   □ Arrange food/drinks
#   □ Party favors

Checklist Templates

PartyCraft includes built-in checklist templates for common event types:

  • Wedding — Venue, invitations, catering, photographer, flowers, seating, music/DJ, cake, rehearsal dinner, final guest count
  • Birthday — Theme, invitations, cake, decorations, activities/games, food/drinks, party favors
  • Corporate — Objectives, venue, invitations, AV equipment, agenda/speakers, catering, name badges, follow-up materials
  • General — Date/time, venue, guest list, invitations, food/drinks, decorations, entertainment, cleanup plan

Output

All output is printed to stdout. Event data is persisted in ~/.partycraft/events.json and can be viewed or edited directly.


*Powered by BytesAgain | bytesagain.com | hello@bytesagain.com*

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

OpenClaw

88.52%
按下载量换算3,859

安全审计

VirusTotal

可疑

ClawScan

通过

Static analysis

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills