cashclaw 1.6.0 → 1.7.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,177 +1,263 @@
1
- # Changelog
2
-
3
- All notable changes to CashClaw will be documented in this file.
4
-
5
- ## [1.6.0] - 2026-03-21
6
-
7
- ### Added
8
- - 30+ new bridge functions covering ALL HYRVE API endpoints
9
- - Auth: `register`, `refreshToken`, `updateProfile`, `forgotPassword`, `resetPassword`, `verifyEmail`, `resendVerification`
10
- - Agents: `registerAgentDashboard`, `updateAgent`, `deleteAgent`
11
- - Orders: `createOrder`, `completeOrder`, `reviewOrder`, `counterOffer`, `acceptCounter`
12
- - Payments: `propose`, `checkout`, `verifyPayment`, `getPaymentConfig`
13
- - API Keys: `createApiKey`, `listApiKeys`, `revokeApiKey`
14
- - Admin: `adminGetStats`, `adminListUsers`, `adminBanUser`, `adminUnbanUser`, `adminListOrders`, `adminListAgents`, `adminDelistAgent`, `adminGetDisputes`
15
- - Other: `getPlatformStats`, `uploadFile`
16
- - Job polling daemon (`cashclaw hyrve poll`) with configurable interval
17
- - CLI: `cashclaw hyrve poll` -- start job polling daemon
18
- - CLI: `cashclaw hyrve stats` -- show platform statistics
19
- - CLI: `cashclaw hyrve keys` -- list/create/revoke API keys
20
- - CLI: `cashclaw hyrve counter <orderId> <amount>` -- send counter-offer
21
- - CLI: `cashclaw hyrve complete <orderId>` -- complete/approve order
22
- - CLI: `cashclaw hyrve review <orderId> <rating>` -- leave review (1-5)
23
-
24
- ### Fixed
25
- - Wallet display now uses `/wallet` endpoint with proper balance details
26
- - Bridge functions use consistent auth headers (JWT preferred, API key fallback)
27
-
28
- ### Changed
29
- - Total bridge functions: 20 -> 50+
30
- - Full HYRVE API v1.1.0 coverage
31
- - README updated with full function table and new commands
32
- - Job poller added to scheduler.js
33
-
34
- ## [1.5.0] - 2026-03-20
35
-
36
- ### Added
37
- - Full HYRVE API v1.1.0 compatibility (35+ endpoints)
38
- - JWT authentication support (login + token refresh)
39
- - Auto-accept mode: proposals under configured limit auto-accepted
40
- - Agent Claim: claim self-registered agents to your account
41
- - Proposal management: accept/reject proposals from dashboard + CLI
42
- - Order messaging: send/receive messages per order
43
- - Wallet withdrawals: request payouts via Stripe or USDT
44
- - Job detail view with full description
45
- - Dispute opening support
46
- - CLI: `cashclaw hyrve login` - authenticate with email/password
47
- - CLI: `cashclaw hyrve claim <api-key>` - claim agent
48
- - CLI: `cashclaw hyrve proposals` - list pending proposals
49
- - CLI: `cashclaw hyrve messages <orderId>` - view order messages
50
- - CLI: `cashclaw hyrve withdraw <amount>` - request withdrawal
51
- - CLI: `cashclaw hyrve auto-accept on/off` - toggle autonomous mode
52
- - 11 new bridge functions (20 total)
53
-
54
- ### Fixed
55
- - README badge showing wrong version
56
- - Stats updated to match platform (3,580 users, 252 agents)
57
-
58
- ## [1.4.5] - 2026-03-20
59
-
60
- ### Added
61
- - HYRVE Marketplace panel in CashClaw dashboard (jobs, orders, wallet, profile)
62
- - Job acceptance from dashboard UI (Accept button)
63
- - Work delivery from dashboard UI (Deliver button with URL + notes)
64
- - Wallet panel with available/pending/total earned balances
65
- - CLI: `cashclaw hyrve accept <job-id>` command
66
- - CLI: `cashclaw hyrve deliver <order-id> --url <url>` command
67
- - CLI: `cashclaw hyrve profile` command
68
- - CLI: `cashclaw hyrve orders` command
69
- - `getWallet()` bridge function for wallet data
70
- - Status badges for orders (escrow, delivered, completed, disputed)
71
-
72
- ### Fixed
73
- - Job prices showing $0 (was reading wrong field, now uses `budget_usd`)
74
- - Agent registration using self-register endpoint (no auth required)
75
- - Order amounts parsing (string to float conversion)
76
-
77
- ## [1.4.0] - 2026-03-19
78
-
79
- ### Added
80
- - Machine Payments Protocol (MPP) bridge (`src/integrations/mpp-bridge.js`)
81
- - Stripe + Tempo stablecoin payments (USDC)
82
- - 1.5% transaction fees (vs 2.9%+$0.30 for cards)
83
- - createChallenge, verifyCredential, getStatus functions
84
- - `cashclaw hyrve` subcommand suite
85
- - `hyrve status` -- connection status + MPP availability
86
- - `hyrve jobs` -- list available marketplace jobs
87
- - `hyrve wallet` -- wallet balance check
88
- - `hyrve dashboard` -- open app.hyrveai.com in browser
89
-
90
- ### Changed
91
- - Updated README with MPP section and hyrve commands
92
- - Stats: 111 stars, 34 forks, 3,000+ registered users
93
-
94
- ## [1.3.0] - 2026-03-19
95
-
96
- ### Added
97
- - Live HYRVE AI marketplace integration (api.hyrveai.com)
98
- - API key authentication (X-API-Key header) for agent-platform communication
99
- - New bridge functions: `deliverJob()`, `getAgentProfile()`, `listOrders()`
100
- - Config fields: `hyrve.api_key`, `hyrve.agent_id`, `hyrve.dashboard_url`, `hyrve.enabled`
101
- - Error response parsing for real API error bodies (JSON and plain text)
102
- - Bridge config validation helper (`checkBridgeConfig`)
103
-
104
- ### Changed
105
- - `hyrve-bridge.js` now connects to live production API at api.hyrveai.com/v1
106
- - Improved error handling with real API response parsing (`parseErrorResponse`)
107
- - All bridge functions include X-API-Key header when configured
108
- - Updated README with live marketplace links (app.hyrveai.com, api.hyrveai.com)
109
- - Updated README with HYRVE AI Integration section documenting all bridge functions
110
-
111
- ### Fixed
112
- - Bridge connection timeout handling with better error messages
113
- - Config migration for existing installations (new hyrve fields merge with defaults)
114
-
115
- ## [1.2.1] - 2026-03-16
116
-
117
- ### Fixed
118
- - Minor bug fixes and stability improvements
119
-
120
- ## [1.2.0] - 2026-03-15
121
-
122
- ### Added
123
- - **5 New Skills** -- Email Outreach ($9-$29), Competitor Analyzer ($19-$49), Landing Page ($15-$39), Data Scraper ($9-$25), Reputation Manager ($19-$49). CashClaw now ships with 12 revenue-generating skills.
124
- - 10 new mission templates for the new skills (basic + pro tiers each).
125
- - Environment variable support: `CASHCLAW_STRIPE_SECRET_KEY` as alternative to config file.
126
- - Corrupted mission file warnings (previously silently skipped).
127
- - Shared version helper (`src/utils/version.js`) for consistent version display.
128
-
129
- ### Fixed
130
- - **Cancel status log bug** -- Mission cancel audit trail now correctly shows the previous status instead of always logging "was: cancelled".
131
- - **Short ID collision** -- Multiple missions sharing the same ID prefix now show an ambiguous match warning instead of silently picking the first match.
132
- - **Hardcoded versions** -- All hardcoded version strings throughout the codebase now dynamically read from `package.json`.
133
-
134
- ### Security
135
- - **CORS restriction** -- Dashboard API now restricts CORS to localhost origins. Agents and curl still work (no Origin header = no restriction).
136
- - **Config API protection** -- `POST /api/config` now blocks modification of sensitive keys (`stripe.secret_key`, `stripe.webhook_secret`).
137
- - **Prototype pollution guard** -- Config key traversal (both CLI and API) now rejects `__proto__`, `constructor`, and `prototype` keys.
138
-
139
- ### Changed
140
- - Default config now includes 10 service types (up from 5).
141
- - Init wizard now offers 10 services for selection.
142
- - Dashboard HTML version updated to v1.2.0 with dynamic version from health API.
143
- - HYRVEai User-Agent header now reads version from package.json.
144
- - Test suite expanded with version, security, and new skill tests.
145
-
146
- ## [1.1.0] - 2026-03-14
147
-
148
- ### Added
149
- - **Mission Audit Trail** -- Every mission step is now logged with timestamps. What was requested, what was delivered, and the full output trail. No invoice goes out without proof.
150
- - `cashclaw missions trail <id>` -- View the formatted audit trail for any mission in the terminal.
151
- - `cashclaw missions export <id>` -- Export mission proof as a markdown file for client disputes or record-keeping.
152
- - `GET /api/missions/:id/trail` -- Dashboard API endpoint returning the audit trail as JSON.
153
-
154
- ### Changed
155
- - Mission objects now include an `audit_trail` array tracking all state changes.
156
- - All mission lifecycle functions (create, start, complete, cancel, step update) log trail entries automatically.
157
- - Dashboard health endpoint now reports version `1.1.0`.
158
- - Updated package description to mention audit trails.
159
-
160
- ## [1.0.2] - 2026-03-10
161
-
162
- ### Fixed
163
- - CLI minor fixes and dependency updates.
164
-
165
- ## [1.0.1] - 2026-03-07
166
-
167
- ### Fixed
168
- - Init wizard improvements and error handling.
169
-
170
- ## [1.0.0] - 2026-03-01
171
-
172
- ### Added
173
- - Initial release with 7 built-in skills.
174
- - Stripe payment integration.
175
- - HYRVEai marketplace support.
176
- - Web dashboard on port 3847.
177
- - Mission lifecycle management.
1
+ # Changelog
2
+
3
+ All notable changes to CashClaw will be documented in this file.
4
+
5
+ ## [1.7.0] - 2026-05-19
6
+
7
+ ### Added — CashClaw Guard (13th skill, eksiksiz sürüm)
8
+
9
+ **Runtime protection layer that ships with the SDK.** Three enforcement primitives in one binary:
10
+
11
+ - **Hard cost cap** per-call USD limit + daily USD limit per scope. Real-time pricing tablosu OpenAI (gpt-5.5, gpt-5, gpt-4o), Anthropic (claude-opus-4-7, claude-sonnet-4-6), Google (gemini-3.1-pro), Moonshot (kimi-k2.6). Throws `BudgetExceeded`.
12
+ - **Recursive call detection** — SHA-1 fingerprint over `model + prompt + label`. Counts repeats inside a sliding window. Throws `RecursionKilled` before the loop bankrupts you.
13
+ - **Tool firewall** allowlist + denylist + per-tool rate limits (max_per_minute, max_per_hour). Throws `ToolDenied` / `RateLimitExceeded`.
14
+
15
+ **SDK**:
16
+ ```js
17
+ import { guard } from 'cashclaw/guard';
18
+ const safe = guard.llm({ maxCostUsd: 5, agentId: 'support-bot' })(myLlmCall);
19
+ guard.tool('shell', { agentId: 'support-bot' }); // throws ToolDenied
20
+ ```
21
+
22
+ **CLI**:
23
+ - `cashclaw guard init` — write `~/.cashclaw/guard-policy.yaml` from template
24
+ - `cashclaw guard status` — show active policy + last 10 Guard events
25
+ - `cashclaw guard test` dry-run 8 enforcement scenarios
26
+ - `cashclaw guard kill <agentId>` write a kill flag for a running agent
27
+ - `cashclaw guard logs` — print in-process event ring buffer
28
+ - `cashclaw guard reload` — hot-reload YAML policy without restart
29
+
30
+ **YAML policy** — first-class declarative config with built-in defaults. Hot reload supported.
31
+
32
+ **Webhook alerts** — Telegram, Slack, Discord, generic POST. Per-channel event subscription (`on: [budget_exceeded, recursion_killed, ...]`).
33
+
34
+ **New module layout**:
35
+ - `src/guard/index.js` — public SDK
36
+ - `src/guard/policy.js` — YAML parser with `Policy.fromFile` / `Policy.fromYaml`
37
+ - `src/guard/decorator.js` `guard.llm()`, `guard.tool()`, `guard.wrap()`
38
+ - `src/guard/cost-tracker.js` token + USD aggregation
39
+ - `src/guard/recursion-detector.js` fingerprint + window counter
40
+ - `src/guard/tool-firewall.js` allowlist + denylist + rate limit
41
+ - `src/guard/webhook.js` multi-channel dispatcher
42
+ - `src/guard/exceptions.js` `GuardError`, `BudgetExceeded`, `RecursionKilled`, `ToolDenied`, `RateLimitExceeded`, `TokenLimitExceeded`
43
+ - `src/cli/commands/guard.js` CLI surface
44
+ - `templates/guard-policy.yaml` default policy
45
+ - `tests/guard.test.js` 8 unit tests
46
+ - `skills/cashclaw-guard/SKILL.md` + `scripts/guard.js` OpenClaw skill
47
+
48
+ ### Changed
49
+ - Skill count **12 13**
50
+ - Package description rewritten: *"The Agent Economy Layer agents earn, agents spend, Guard protects."*
51
+ - HYRVE bridge User-Agent stamp synced to `CashClaw/1.7.0`
52
+ - README repositioned as **Agent Economy Layer** (earn + spend + protect)
53
+ - Platform stats refreshed: 271 stars, 103 forks, 13 watchers, 5,750+ community
54
+ - New keywords: `agent-guard`, `cost-cap`, `runtime-governance`, `agent-economy`
55
+
56
+ ### Dependencies
57
+ - Added `js-yaml ^4.1.0` for policy parsing
58
+
59
+ ### Why Guard, why now?
60
+ Cloudflare lost **$34,000 in 8 days** to a Durable Object loop calling an LLM API on every tick (February 2026). OpenAI / Anthropic soft limits kick in 24 hours after breach — too late. Helicone / Langfuse / Datadog observe, they do not enforce. Guard is the missing runtime layer that **stops the bleeding** at call zero.
61
+
62
+ This is the first OSS release that combines monetization (Earn) and protection (Guard) in a single SDK. Big Tech has incentive to ship one but not the other; CashClaw ships both because the agent economy needs both halves to function.
63
+
64
+ ## [1.6.2] - 2026-04-05
65
+
66
+ ### Fixed
67
+ - **Critical: `agent_id` null after init** ([#3](https://github.com/ertugrulakben/HYRVE-AI/issues/3)): `registerAgent()` returns `data.agent_id` nested under `data` object, but `init` was reading `hyrveResult.agent_id` (always `null`). Now correctly reads `hyrveResult.data.agent_id`
68
+ - **Login does not populate `agent_id`**: After `cashclaw hyrve login`, the command now auto-fetches the user's agent profile and saves `agent_id` + `registered: true` to config
69
+ - **`claim` returns "already owned" without saving**: When `cashclaw hyrve claim` gets a 400 "already own" response, it now fetches the owned agent and saves its ID to local config instead of failing
70
+ - **`api_key` not saved on init**: Registration API key from self-register is now persisted to config
71
+
72
+ ### Added
73
+ - `getMyAgents()` bridge function to fetch authenticated user's agents via `GET /agents/me`
74
+
75
+ ### Contributors
76
+ - @nikatronic (bug report [#3](https://github.com/ertugrulakben/HYRVE-AI/issues/3))
77
+
78
+ ## [1.6.1] - 2026-03-27
79
+
80
+ ### Fixed
81
+ - **Dashboard wallet crash**: Added `escrow_release`, `escrow_hold`, `withdrawal` transaction types with icons and colors. Unknown types now fallback gracefully
82
+ - **Approve/Delete/Revoke button failures**: Fixed "Body cannot be empty" error by ensuring POST requests always include `{}` body and DELETE requests omit Content-Type when no body
83
+ - **Deliverables rendering**: Structured objects (`{type, content}`) now display content properly instead of raw JSON
84
+ - **Backend API**: Custom JSON content-type parser accepts empty request bodies
85
+
86
+ ### Changed
87
+ - `api.ts` fetch method: smart Content-Type handling based on HTTP method and body presence
88
+ - Transaction type union expanded: `payment | payout | refund | fee | escrow_release | escrow_hold | withdrawal`
89
+
90
+
91
+ ## [1.6.0] - 2026-03-21
92
+
93
+ ### Added
94
+ - 30+ new bridge functions covering ALL HYRVE API endpoints
95
+ - Auth: `register`, `refreshToken`, `updateProfile`, `forgotPassword`, `resetPassword`, `verifyEmail`, `resendVerification`
96
+ - Agents: `registerAgentDashboard`, `updateAgent`, `deleteAgent`
97
+ - Orders: `createOrder`, `completeOrder`, `reviewOrder`, `counterOffer`, `acceptCounter`
98
+ - Payments: `propose`, `checkout`, `verifyPayment`, `getPaymentConfig`
99
+ - API Keys: `createApiKey`, `listApiKeys`, `revokeApiKey`
100
+ - Admin: `adminGetStats`, `adminListUsers`, `adminBanUser`, `adminUnbanUser`, `adminListOrders`, `adminListAgents`, `adminDelistAgent`, `adminGetDisputes`
101
+ - Other: `getPlatformStats`, `uploadFile`
102
+ - Job polling daemon (`cashclaw hyrve poll`) with configurable interval
103
+ - CLI: `cashclaw hyrve poll` -- start job polling daemon
104
+ - CLI: `cashclaw hyrve stats` -- show platform statistics
105
+ - CLI: `cashclaw hyrve keys` -- list/create/revoke API keys
106
+ - CLI: `cashclaw hyrve counter <orderId> <amount>` -- send counter-offer
107
+ - CLI: `cashclaw hyrve complete <orderId>` -- complete/approve order
108
+ - CLI: `cashclaw hyrve review <orderId> <rating>` -- leave review (1-5)
109
+
110
+ ### Fixed
111
+ - Wallet display now uses `/wallet` endpoint with proper balance details
112
+ - Bridge functions use consistent auth headers (JWT preferred, API key fallback)
113
+
114
+ ### Changed
115
+ - Total bridge functions: 20 -> 50+
116
+ - Full HYRVE API v1.1.0 coverage
117
+ - README updated with full function table and new commands
118
+ - Job poller added to scheduler.js
119
+
120
+ ## [1.5.0] - 2026-03-20
121
+
122
+ ### Added
123
+ - Full HYRVE API v1.1.0 compatibility (35+ endpoints)
124
+ - JWT authentication support (login + token refresh)
125
+ - Auto-accept mode: proposals under configured limit auto-accepted
126
+ - Agent Claim: claim self-registered agents to your account
127
+ - Proposal management: accept/reject proposals from dashboard + CLI
128
+ - Order messaging: send/receive messages per order
129
+ - Wallet withdrawals: request payouts via Stripe or USDT
130
+ - Job detail view with full description
131
+ - Dispute opening support
132
+ - CLI: `cashclaw hyrve login` - authenticate with email/password
133
+ - CLI: `cashclaw hyrve claim <api-key>` - claim agent
134
+ - CLI: `cashclaw hyrve proposals` - list pending proposals
135
+ - CLI: `cashclaw hyrve messages <orderId>` - view order messages
136
+ - CLI: `cashclaw hyrve withdraw <amount>` - request withdrawal
137
+ - CLI: `cashclaw hyrve auto-accept on/off` - toggle autonomous mode
138
+ - 11 new bridge functions (20 total)
139
+
140
+ ### Fixed
141
+ - README badge showing wrong version
142
+ - Stats updated to match platform (3,580 users, 252 agents)
143
+
144
+ ## [1.4.5] - 2026-03-20
145
+
146
+ ### Added
147
+ - HYRVE Marketplace panel in CashClaw dashboard (jobs, orders, wallet, profile)
148
+ - Job acceptance from dashboard UI (Accept button)
149
+ - Work delivery from dashboard UI (Deliver button with URL + notes)
150
+ - Wallet panel with available/pending/total earned balances
151
+ - CLI: `cashclaw hyrve accept <job-id>` command
152
+ - CLI: `cashclaw hyrve deliver <order-id> --url <url>` command
153
+ - CLI: `cashclaw hyrve profile` command
154
+ - CLI: `cashclaw hyrve orders` command
155
+ - `getWallet()` bridge function for wallet data
156
+ - Status badges for orders (escrow, delivered, completed, disputed)
157
+
158
+ ### Fixed
159
+ - Job prices showing $0 (was reading wrong field, now uses `budget_usd`)
160
+ - Agent registration using self-register endpoint (no auth required)
161
+ - Order amounts parsing (string to float conversion)
162
+
163
+ ## [1.4.0] - 2026-03-19
164
+
165
+ ### Added
166
+ - Machine Payments Protocol (MPP) bridge (`src/integrations/mpp-bridge.js`)
167
+ - Stripe + Tempo stablecoin payments (USDC)
168
+ - 1.5% transaction fees (vs 2.9%+$0.30 for cards)
169
+ - createChallenge, verifyCredential, getStatus functions
170
+ - `cashclaw hyrve` subcommand suite
171
+ - `hyrve status` -- connection status + MPP availability
172
+ - `hyrve jobs` -- list available marketplace jobs
173
+ - `hyrve wallet` -- wallet balance check
174
+ - `hyrve dashboard` -- open app.hyrveai.com in browser
175
+
176
+ ### Changed
177
+ - Updated README with MPP section and hyrve commands
178
+ - Stats: 111 stars, 34 forks, 3,000+ registered users
179
+
180
+ ## [1.3.0] - 2026-03-19
181
+
182
+ ### Added
183
+ - Live HYRVE AI marketplace integration (api.hyrveai.com)
184
+ - API key authentication (X-API-Key header) for agent-platform communication
185
+ - New bridge functions: `deliverJob()`, `getAgentProfile()`, `listOrders()`
186
+ - Config fields: `hyrve.api_key`, `hyrve.agent_id`, `hyrve.dashboard_url`, `hyrve.enabled`
187
+ - Error response parsing for real API error bodies (JSON and plain text)
188
+ - Bridge config validation helper (`checkBridgeConfig`)
189
+
190
+ ### Changed
191
+ - `hyrve-bridge.js` now connects to live production API at api.hyrveai.com/v1
192
+ - Improved error handling with real API response parsing (`parseErrorResponse`)
193
+ - All bridge functions include X-API-Key header when configured
194
+ - Updated README with live marketplace links (app.hyrveai.com, api.hyrveai.com)
195
+ - Updated README with HYRVE AI Integration section documenting all bridge functions
196
+
197
+ ### Fixed
198
+ - Bridge connection timeout handling with better error messages
199
+ - Config migration for existing installations (new hyrve fields merge with defaults)
200
+
201
+ ## [1.2.1] - 2026-03-16
202
+
203
+ ### Fixed
204
+ - Minor bug fixes and stability improvements
205
+
206
+ ## [1.2.0] - 2026-03-15
207
+
208
+ ### Added
209
+ - **5 New Skills** -- Email Outreach ($9-$29), Competitor Analyzer ($19-$49), Landing Page ($15-$39), Data Scraper ($9-$25), Reputation Manager ($19-$49). CashClaw now ships with 12 revenue-generating skills.
210
+ - 10 new mission templates for the new skills (basic + pro tiers each).
211
+ - Environment variable support: `CASHCLAW_STRIPE_SECRET_KEY` as alternative to config file.
212
+ - Corrupted mission file warnings (previously silently skipped).
213
+ - Shared version helper (`src/utils/version.js`) for consistent version display.
214
+
215
+ ### Fixed
216
+ - **Cancel status log bug** -- Mission cancel audit trail now correctly shows the previous status instead of always logging "was: cancelled".
217
+ - **Short ID collision** -- Multiple missions sharing the same ID prefix now show an ambiguous match warning instead of silently picking the first match.
218
+ - **Hardcoded versions** -- All hardcoded version strings throughout the codebase now dynamically read from `package.json`.
219
+
220
+ ### Security
221
+ - **CORS restriction** -- Dashboard API now restricts CORS to localhost origins. Agents and curl still work (no Origin header = no restriction).
222
+ - **Config API protection** -- `POST /api/config` now blocks modification of sensitive keys (`stripe.secret_key`, `stripe.webhook_secret`).
223
+ - **Prototype pollution guard** -- Config key traversal (both CLI and API) now rejects `__proto__`, `constructor`, and `prototype` keys.
224
+
225
+ ### Changed
226
+ - Default config now includes 10 service types (up from 5).
227
+ - Init wizard now offers 10 services for selection.
228
+ - Dashboard HTML version updated to v1.2.0 with dynamic version from health API.
229
+ - HYRVEai User-Agent header now reads version from package.json.
230
+ - Test suite expanded with version, security, and new skill tests.
231
+
232
+ ## [1.1.0] - 2026-03-14
233
+
234
+ ### Added
235
+ - **Mission Audit Trail** -- Every mission step is now logged with timestamps. What was requested, what was delivered, and the full output trail. No invoice goes out without proof.
236
+ - `cashclaw missions trail <id>` -- View the formatted audit trail for any mission in the terminal.
237
+ - `cashclaw missions export <id>` -- Export mission proof as a markdown file for client disputes or record-keeping.
238
+ - `GET /api/missions/:id/trail` -- Dashboard API endpoint returning the audit trail as JSON.
239
+
240
+ ### Changed
241
+ - Mission objects now include an `audit_trail` array tracking all state changes.
242
+ - All mission lifecycle functions (create, start, complete, cancel, step update) log trail entries automatically.
243
+ - Dashboard health endpoint now reports version `1.1.0`.
244
+ - Updated package description to mention audit trails.
245
+
246
+ ## [1.0.2] - 2026-03-10
247
+
248
+ ### Fixed
249
+ - CLI minor fixes and dependency updates.
250
+
251
+ ## [1.0.1] - 2026-03-07
252
+
253
+ ### Fixed
254
+ - Init wizard improvements and error handling.
255
+
256
+ ## [1.0.0] - 2026-03-01
257
+
258
+ ### Added
259
+ - Initial release with 7 built-in skills.
260
+ - Stripe payment integration.
261
+ - HYRVEai marketplace support.
262
+ - Web dashboard on port 3847.
263
+ - Mission lifecycle management.