Implement SimpleNote CLI - full Commander.js CLI

- Commander.js-based CLI with subcommands
- Document commands: list, get, create, update, delete, export, add-tags
- Library commands: list, get, create, tree
- Tag commands: list, docs
- Auth commands: login, status
- Axios-based API client with error handling
- Config loader for ~/.config/simplenote/config.json
- Chalk for colored output
This commit is contained in:
Erwin
2026-03-28 03:27:44 +00:00
parent 3edb76f197
commit 5978d7acf6
13 changed files with 1885 additions and 59 deletions

View File

@@ -12,5 +12,12 @@
},
"keywords": ["cli", "documents", "markdown"],
"author": "OpenClaw Team",
"license": "MIT"
"license": "MIT",
"dependencies": {
"axios": "^1.7.7",
"chalk": "^5.3.0",
"commander": "^12.1.0",
"dotenv": "^16.4.5",
"inquirer": "^9.2.0"
}
}