Erp
/install erp
ERP
Enterprise resource planning productivity toolkit (v2.0.0). Log and track business activities across multiple categories — planning, tracking, reviews, reminders, priorities, archiving, tagging, timelines, reports, and weekly reviews. Each command records timestamped entries to its own log file, giving you a complete audit trail of all business operations.
Commands
| Command | Description |
|---|---|
erp add \x3Cinput> |
Add a new entry to the general log. Without args, shows recent entries. |
erp plan \x3Cinput> |
Record a planning note (resource allocation, project plan, etc.). Without args, shows recent plan entries. |
erp track \x3Cinput> |
Track an activity, metric, or progress item. Without args, shows recent tracked entries. |
erp review \x3Cinput> |
Log a review note (performance review, process review, etc.). Without args, shows recent reviews. |
erp streak \x3Cinput> |
Record a streak milestone or daily streak entry. Without args, shows recent streaks. |
erp remind \x3Cinput> |
Set a reminder or note something to follow up on. Without args, shows recent reminders. |
erp prioritize \x3Cinput> |
Log a prioritization decision or rank items. Without args, shows recent priorities. |
erp archive \x3Cinput> |
Archive a completed item or record. Without args, shows recent archived entries. |
erp tag \x3Cinput> |
Tag or categorize an entry. Without args, shows recent tags. |
erp timeline \x3Cinput> |
Add an event to the timeline. Without args, shows recent timeline entries. |
erp report \x3Cinput> |
Log a report or summary. Without args, shows recent reports. |
erp weekly-review \x3Cinput> |
Record a weekly review summary. Without args, shows recent weekly reviews. |
erp stats |
Show summary statistics: entry counts per category, total entries, data size, and earliest record date. |
erp export \x3Cfmt> |
Export all data to a file. Supported formats: json, csv, txt. |
erp search \x3Cterm> |
Search across all log files for a keyword (case-insensitive). |
erp recent |
Show the 20 most recent entries from the activity history log. |
erp status |
Health check: version, data directory, total entries, disk usage, last activity. |
erp help |
Show the built-in help with all available commands. |
erp version |
Print the current version (v2.0.0). |
Data Storage
All data is stored as plain-text log files in ~/.local/share/erp/:
- Per-command logs — Each command (add, plan, track, etc.) writes to its own
.logfile (e.g.,add.log,plan.log). - History log — Every operation is also appended to
history.logwith a timestamp and command name. - Export files — Generated in the same directory as
export.json,export.csv, orexport.txt.
Entries are stored in timestamp|value format, making them easy to grep, parse, or pipe into other tools.
Requirements
- Bash 4.0+ (uses
set -euo pipefail) - coreutils —
date,wc,du,head,tail,grep,basename,cut - No external dependencies, API keys, or network access required
- Works fully offline on any POSIX-compatible system
When to Use
- Daily operational logging — Track what happened across departments each day: sales calls, support tickets resolved, inventory received, tasks completed.
- Resource planning and prioritization — Use
planandprioritizeto record allocation decisions and rank items by importance before committing resources. - Weekly business reviews — Run
weekly-reviewto summarize the week, thenstatsto see aggregate numbers andexport jsonto share with stakeholders. - Reminder and follow-up management — Use
remindto note items that need attention later, andsearchto quickly find past reminders by keyword. - Audit trail and compliance — Every action is timestamped and logged to
history.log, providing a complete chronological record of all ERP activities for auditing purposes.
Examples
# Add a new inventory item
erp add "Received 500 units of Widget-A from Supplier-X"
# Plan resource allocation for Q2
erp plan "Allocate 3 engineers to Project Alpha for Q2"
# Track a KPI
erp track "Customer satisfaction score: 4.7/5.0"
# Set a priority
erp prioritize "Ship feature-X before feature-Y — customer deadline March 30"
# Record a weekly review
erp weekly-review "Week 12: shipped 3 features, resolved 15 tickets, revenue +8%"
# Search for anything mentioning 'Widget'
erp search Widget
# Export everything to JSON for reporting
erp export json
# Check system health
erp status
# View summary statistics
erp stats
Tips
- Run any data command without arguments to see recent entries (e.g.,
erp addshows the last 20 add entries). - Use
erp recentfor a quick overview of all activity across all categories. - Pipe exports to other tools:
cat ~/.local/share/erp/export.csv | column -t -s, - Back up your data by copying
~/.local/share/erp/to your preferred backup location.
Powered by BytesAgain | bytesagain.com | [email protected]
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install erp - 安装完成后,直接呼叫该 Skill 的名称或使用
/erp触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
Erp 是什么?
Plan resources, track inventory, and coordinate departments with reporting. Use when allocating resources, managing stock, or tracking department KPIs. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 397 次。
如何安装 Erp?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install erp」即可一键安装,无需额外配置。
Erp 是免费的吗?
是的,Erp 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
Erp 支持哪些平台?
Erp 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Erp?
由 bytesagain1(@bytesagain1)开发并维护,当前版本 v2.0.1。