Skip to content

Commit 20fdc45

Browse files
committed
Update README and add CHANGELOG
1 parent 8c324a5 commit 20fdc45

2 files changed

Lines changed: 70 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
# Changelog
2+
3+
All notable changes to the MetaMask Agent CLI Skills are documented here.
4+
5+
These skills track the [`@metamask/agentic-cli`](https://github.com/MetaMask/agentic) releases.
6+
Each entry lists the skill `version` (frontmatter) and the CLI `cliVersion` it targets,
7+
along with the user-facing CLI changes that motivated the skill update. Use this log to
8+
catch up if you are on an older skill version — apply the entries above yours in order.
9+
10+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
11+
and the skills follow [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
12+
13+
## [5.0.1] — targets CLI v4.0.1
14+
15+
### Removed
16+
17+
- **`metamask-agent-workflows` skill.** Its workflow templates were a subset of the
18+
`metamask-agent-wallet` skill's `workflows/` directory (the wallet copies were also more
19+
up-to-date). The repo now ships a single `metamask-agent-wallet` skill that bundles both the
20+
reference docs and the workflow templates. Install it with
21+
`npx skills add metaMask/agent-skills`.
22+
23+
### Changed
24+
25+
- `references/doctor.md`: document that `mm doctor` now detects **project-local** MetaMask AI
26+
skills when the global skill lock file (`~/.agents/.skill-lock.json`) exists but lacks
27+
MetaMask entries. ([agentic#263](https://github.com/MetaMask/agentic/pull/263))
28+
- Bumped `cliVersion` to `4.0.1` across both skills and updated README.
29+
30+
### Notes
31+
32+
- CLI v4.0.1 also improved Sentry error reporting and surfaced reportable failures in
33+
Segment analytics ([agentic#264](https://github.com/MetaMask/agentic/pull/264)); these are
34+
internal telemetry changes with no impact on the command surface, so no skill docs changed.
35+
36+
## [5.0.0] — targets CLI v4.0.0
37+
38+
### Added
39+
40+
- BYOK (bring-your-own-key) parity for `mm init` and `mm wallet create`: persisted BYOK
41+
wallets are registered server-side, prompt for a trading mode, and apply the server trading
42+
policy — matching the server-wallet flow. ([agentic#246](https://github.com/MetaMask/agentic/pull/246))
43+
44+
### Fixed
45+
46+
- `mm predict` deposit-wallet setup no longer stalls with contradictory relayer errors when a
47+
cached address was derived as legacy UUPS instead of BeaconProxy.
48+
([agentic#259](https://github.com/MetaMask/agentic/pull/259))
49+
50+
## Earlier CLI history
51+
52+
For CLI releases prior to v4.0.0, see the upstream
53+
[`packages/agentic-cli/CHANGELOG.md`](https://github.com/MetaMask/agentic/blob/main/packages/agentic-cli/CHANGELOG.md).
54+
Highlights that shaped the current skill surface:
55+
56+
- **v3.2.0** — confirmation prompts (with `--yes`) before `mm logout` / `mm reset`; npm update
57+
notifier; `mm wallet list` refreshes the remote roster before listing.
58+
- **v3.0.0****breaking:** `mm login google` / `mm login email` removed; use
59+
`mm login browser` (Google or email via the MetaMask dashboard). Bridge `--refuel` added;
60+
deposit preflight checks; auto-rehydrate on login.
61+
- **v2.0.0****breaking:** wallet policy moved to `mm wallet policy get|set|template`
62+
(`mm wallet show` / `create` return `policyYaml` instead of `policies`). Added `mm doctor`,
63+
`mm transaction` history, and major CLI startup performance work.
64+
- **v1.0.0**`mm wallet add-fund` (QR funding), trading-mode get/set commands, and
65+
`mm swap`/`mm predict` recipient support.

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
11
# MetaMask Agent CLI Skills
22

3-
SKILLs for the MetaMask Agent CLI (`@metamask/agentic-cli` v4.0.0). These skills enable AI agents to authenticate, manage wallets, swap tokens, bridge across chains, trade perpetual futures, and more using the MetaMask Agent CLI.
3+
SKILLs for the MetaMask Agent CLI (`@metamask/agentic-cli` v4.0.1). These skills enable AI agents to authenticate, manage wallets, swap tokens, bridge across chains, trade perpetual futures, and more using the MetaMask Agent CLI.
44

55
## Skills
66

77
| Skill | Description |
88
| --- | --- |
9-
| [`metamask-agent-wallet`](./skills/metamask-agent-wallet/SKILL.md) | Full CLI reference skill that routes the agent to topic-specific reference docs for all MetaMask Agent CLI commands — auth, wallets, transfers, signing, swaps, bridges, perps, prediction markets, market data, and calldata decoding. |
10-
| [`metamask-agent-workflows`](./skills/metamask-agent-workflows/SKILL.md) | Multistep workflow templates for complex operations like onboarding, swaps, bridges, and perps trading. It doesn't include reference docs — relies on `--help` for command details instead. |
9+
| [`metamask-agent-wallet`](./skills/metamask-agent-wallet/SKILL.md) | Full CLI skill that routes the agent to topic-specific reference docs (`references/`) for all MetaMask Agent CLI commands — auth, wallets, transfers, signing, swaps, bridges, perps, prediction markets, Aave V3, market data, x402 payments, and calldata decoding — plus multistep workflow templates (`workflows/`) for onboarding, swaps, bridges, perps, prediction markets, and Aave. |
1110

1211
## Installation
1312

@@ -17,4 +16,6 @@ Install with [Vercel's Skills CLI](https://skills.sh):
1716
npx skills add metaMask/agent-skills
1817
```
1918

20-
Select any one of the SKILLs upon prompt.
19+
## Changelog
20+
21+
See [CHANGELOG.md](./CHANGELOG.md) for skill updates and how to catch up from an older version.

0 commit comments

Comments
 (0)