文件预览

package.json

查看 AgentLedger 技能包中的文件内容。

文件内容

package.json

{
  "name": "agentledger",
  "version": "1.1.1",
  "description": "Comprehensive expense tracking and accounting skill for AI agents - log purchases, track budgets, generate reports, and manage finances with Privacy.com integration",
  "main": "src/ledger.js",
  "bin": {
    "agentledger": "src/cli.js"
  },
  "scripts": {
    "test": "node test/ledger.test.js",
    "cli": "node src/cli.js",
    "start": "node src/cli.js init",
    "postinstall": "echo '\n✅ AgentLedger installed successfully!\n📁 Run: node src/cli.js init\n📖 See: SKILL.md for usage instructions\n'"
  },
  "keywords": [
    "openclaw",
    "skill",
    "agent",
    "accounting",
    "expense-tracking",
    "financial",
    "ledger",
    "budget",
    "transactions",
    "privacy",
    "multi-currency",
    "reporting",
    "api-costs",
    "automation",
    "finance-management"
  ],
  "author": "OpenClaw Community",
  "license": "MIT",
  "openclaw": {
    "type": "skill",
    "category": "productivity",
    "tags": ["accounting", "finance", "tracking", "budget", "privacy", "multi-currency"],
    "requirements": {
      "node": ">=16.0.0"
    },
    "permissions": {
      "filesystem": ["read", "write"],
      "workspace": true
    },
    "features": [
      "Transaction logging with full context",
      "Multi-currency support",
      "Budget tracking and alerts", 
      "Privacy.com integration",
      "Natural language queries",
      "Comprehensive reporting",
      "Data export (CSV/JSON)",
      "Automatic backups",
      "CLI and programmatic API"
    ]
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/openclaw/skills-agentledger"
  },
  "engines": {
    "node": ">=16.0.0"
  },
  "files": [
    "src/",
    "test/",
    "SKILL.md", 
    "README.md",
    ".gitignore"
  ]
}