Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ The base URL is used for OAuth, the SDK, and search. OAuth login supports `comms
```bash
tdc auth status # check if authenticated
tdc auth logout # remove saved token
tdc auth token view # print the stored access token
tdc auth token view # print the stored access token (refreshes an expiring OAuth token first)
tdc auth refresh-token view # print the stored OAuth refresh token
```

Expand Down
69 changes: 33 additions & 36 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
"CHANGELOG.md"
],
"dependencies": {
"@doist/cli-core": "1.4.0",
"@doist/cli-core": "1.6.0",
"@doist/comms-sdk": "3.0.0",
"@pnpm/tabtab": "0.5.4",
"chalk": "5.6.2",
Expand Down
2 changes: 1 addition & 1 deletion skills/comms-cli/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ tdc --user <ref> auth <status|logout|token view|refresh-token view> # Equivalen
tdc auth logout # Remove saved token and auth metadata
tdc auth logout --json # Emits `{"ok": true}` (--ndjson is silent)
tdc auth logout --user <ref> # Target a specific stored account; mismatched ref errors with ACCOUNT_NOT_FOUND
tdc auth token view # Print the saved token to stdout (pipe-safe; refuses if COMMS_API_TOKEN is set)
tdc auth token view # Print the saved token to stdout (pipe-safe; refreshes an expiring OAuth token first; refuses if COMMS_API_TOKEN is set)
tdc auth token view --user <ref> # Print the saved token for a specific stored account
tdc auth refresh-token view # Print the saved OAuth refresh token to stdout (pipe-safe; OAuth logins only)
tdc auth refresh-token view --user <ref> # Print the saved OAuth refresh token for a specific stored account
Expand Down
Loading
Loading