scripts
Reusable script creation and management
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Reusable script creation and management
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Calendar operations with CalDAV
Git repository management, GitLab merge requests, and GitHub pull requests
Location tracking, place recognition, visit history, and calendar attendance
Persistent memory writes — USER.md (behavioral) and the knowledge graph (facts).
Accounting operations (ledger, invoicing, transactions, work log, investment portfolio) — runs in-process via the vendored money package
Send a push notification to the user's configured ntfy device(s). One-way (bot to phone), no reply channel.
| name | scripts |
| description | Reusable script creation and management |
| always_include | true |
You can create and maintain reusable Python scripts in the user's persistent scripts directory in your workspace.
{scripts_dir}
Create the directory if it doesn't exist: mkdir -p {scripts_dir}
Consider creating a script when a task is:
If you're unsure whether something should be a script or a one-off action, ask the user.
Always check what already exists first:
ls {scripts_dir}
An existing script might already do what's needed, or could be extended.
#!/usr/bin/env python3 shebang, chmod +x after creatingsnake_case.py naming — descriptive (e.g., backup_project_notes.py, weekly_report_email.py)argparse for CLI argumentsistota-skill kv set/get for any runtime state (counters, last-run timestamps, seen items, etc.) — not JSON filesTell the user the path and how to run it:
Script saved: {scripts_dir}/weekly_report_email.py
Run with: python {scripts_dir}/weekly_report_email.py