Commit Graph

72 Commits

Author SHA1 Message Date
rcmerci
08a479f2c8 feat(cli): add cmd 'sync asset download' 2026-05-08 15:23:36 +08:00
rcmerci
f5b122ddd5 enhance(cli): add --enable-sync to 'graph create' 2026-05-04 21:13:13 +08:00
rcmerci
2f0a4f37e5 enhance(db-worker-node): restart server on version mismatch 2026-05-04 10:36:20 +08:00
rcmerci
7b68c57056 enhance(cli): add options in export cmd 2026-05-03 20:01:16 +08:00
rcmerci
eca0ab1a36 Merge remote-tracking branch 'origin/master' into feat/cliable 2026-04-28 18:17:17 +08:00
rcmerci
f751f27a63 refactor(cli): remove --data-dir, add --root-dir
--data-dir: ~/logseq/graphs
--root-dir: ~/logseq

All other configuration files and data directories are derived from the root-dir
2026-04-24 22:35:00 +08:00
rcmerci
aee05aa5d4 enhance(cli): default list order to desc 2026-04-24 15:00:33 +08:00
Gabriel Horner
82dfda0355 enhance(cli): Add more docs for cli.edn
Especially custom queries and env vars
2026-04-20 21:30:11 -04:00
rcmerci
1f2eac1adc enhance(cli): breadcrumb in show 2026-04-16 21:51:01 +08:00
rcmerci
1ae912fd92 feat(cli): add list/upsert asset 2026-04-11 17:31:49 +08:00
rcmerci
94be3a0bbb enhance(cli): remove 'server status'; add 'server cleanup' 2026-04-10 23:07:04 +08:00
rcmerci
9bac1ae4dd feat(cli): add skill show/install 2026-04-10 11:38:42 +08:00
rcmerci
d36dfc9947 enhance(cli): options cleanup in task cmds 2026-04-08 17:51:17 +08:00
rcmerci
e41aee18b2 feat(cli): add 'list node' 2026-04-08 16:06:33 +08:00
rcmerci
bdc87e4edc enhance(cli): options cleanup in list cmds 2026-04-08 12:53:19 +08:00
rcmerci
653a004195 enhance(cli): display width in all list-* cmds 2026-04-07 23:49:58 +08:00
rcmerci
9855011e62 feat(cli): add task related cmds 2026-04-07 22:39:04 +08:00
rcmerci
5258fca1f1 refactor(sync): consolidate worker auth state and e2ee password flow 2026-04-04 20:39:20 +08:00
rcmerci
8e98d70ebb feat(cli): add 'debug pull' cmd 2026-04-01 23:39:10 +08:00
rcmerci
ec4e31fa4b enhance(cli): update --profile output 2026-03-31 21:41:12 +08:00
rcmerci
4cedd99255 feat(cli): add 'graph backup' subcmd 2026-03-31 16:08:09 +08:00
rcmerci
1afc0e558c enhance(cli): search cmd use --content option 2026-03-29 20:53:57 +08:00
rcmerci
23daff7dbd enhance(cli): add example subcmd 2026-03-27 23:17:02 +08:00
rcmerci
59d0e5777b enhance(cli): add search subcmd 2026-03-26 21:57:25 +08:00
rcmerci
a16f0012e9 enhance(cli): add --profile global option 2026-03-26 19:31:17 +08:00
rcmerci
ce2dcfc566 067-logseq-cli-json-namespaced-keys.md 2026-03-26 15:16:14 +08:00
rcmerci
cb68930ec8 066-logseq-cli-list-property-cardinality-column.md 2026-03-26 14:20:03 +08:00
rcmerci
209b499494 062-cli-list-default-sort-updated-at.md 2026-03-17 17:30:17 +08:00
rcmerci
78de33bf68 enhance: 'upsert block' support update --content and --status 2026-03-13 22:30:06 +08:00
rcmerci
5e8462c08a 059-cli-doctor-server-revision-mismatch-warning.md 2026-03-12 20:54:11 +08:00
rcmerci
50261dbb95 058-db-worker-node-revision-and-cli-server-list.md 2026-03-12 17:13:27 +08:00
Danzu
35b43611c6 Add ncc build prerequisite and shell completion setup to CLI docs
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-12 15:18:53 +08:00
rcmerci
a89ffb6b0f 057-cli-sync-download-realtime-progress.md 2026-03-12 15:12:34 +08:00
Gabriel Horner
c6a6156188 fix: CLI integration tests failing in CI
Also split out integration tests to separate step and command as they
have their own setup
2026-03-12 15:12:34 +08:00
rcmerci
674e80887e 055-logseq-cli-login-logout.md 2026-03-12 15:12:34 +08:00
rcmerci
4fe1dde02f 052-logseq-cli-sync-upload-graph-uuid-alignment.md 2026-03-12 15:12:34 +08:00
rcmerci
c8da78efd1 051-logseq-cli-sync-upload-fix.md 2026-03-12 15:12:34 +08:00
rcmerci
fefab4d00f 050-sync-download-create-empty-db.md 2026-03-12 15:12:34 +08:00
rcmerci
2449dc27e4 047-logseq-cli-sync-command.md 2026-03-12 15:12:34 +08:00
Gabriel Horner
fe3d68176d fix: confusing and incorrect naming for --repo global option
Repo refers to internal identifiers that start with 'logseq_db_' and
used to start with 'logseq_local_'. The --repo option was not being
used in that way and was just a reference to a graph name. While it's
reasonable for internal CLIs like db-worker-node.js to use --repo, it is
needlessly confusing to introduce repo to users. Almost all of our apps and docs
label graphs as 'graph' and not 'repo'
2026-03-12 15:12:33 +08:00
Gabriel Horner
859c4cee41 fix: graph export's command option conflicts with global option
--output was being used as a global and command option. This resulted in
buggy, coupled behavior e.g. unable to set a global output unless the
export file was named human, edn or json. `--ouput` was also
not listed as a command option which was confusing. Renamed the command
--ouput to --file for explicit and uncoupled behavior
2026-03-12 15:12:33 +08:00
rcmerci
0331c598df 046-logseq-cli-upsert-tag-rename-by-id.md 2026-03-12 15:12:33 +08:00
rcmerci
fa3fda5849 045-logseq-cli-property-type-and-upsert-option-unification.md 2026-03-12 15:12:33 +08:00
rcmerci
67645700cc 044-logseq-cli-upsert-block-page.md 2026-03-12 15:12:33 +08:00
rcmerci
48c1f5374e 041-logseq-cli-add-block-json-identifiers.md 2026-03-12 15:12:33 +08:00
rcmerci
1af88b2b6a 037-db-worker-node-node-sqlite.md 2026-03-12 15:12:33 +08:00
rcmerci
969251bff7 036-db-worker-node-ncc-bundling 2026-03-12 15:12:33 +08:00
rcmerci
0d45ebb1e6 034-db-worker-node-owner-process-management.md 2026-03-12 15:12:33 +08:00
rcmerci
cafe755091 refactor: desktop app use db-worker-node as well
see also: 033-desktop-db-worker-node-backend.md
2026-03-12 15:12:33 +08:00
rcmerci
4c10100aa6 031-logseq-cli-doctor-command.md 2026-03-12 15:12:33 +08:00