incremnt 0.8.0 → 0.8.1

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/format.js +4 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "incremnt",
3
- "version": "0.8.0",
3
+ "version": "0.8.1",
4
4
  "description": "Command-line tool for querying your incremnt strength training data",
5
5
  "license": "MIT",
6
6
  "type": "module",
package/src/format.js CHANGED
@@ -1,5 +1,5 @@
1
1
  import chalk from 'chalk';
2
- import { commandSchema, writeCommandSchema } from './contract.js';
2
+ import { agentCommandSchema, commandSchema, writeCommandSchema } from './contract.js';
3
3
 
4
4
  const shortMonths = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'];
5
5
  const shortDays = ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'];
@@ -869,6 +869,9 @@ export function formatHelp(opts = {}) {
869
869
  cmd('login --session-file <file>', 'Import session file'),
870
870
  cmd('logout', 'Clear session'),
871
871
  '',
872
+ header('AGENT TOKENS'),
873
+ ...agentCommandSchema.map((c) => cmd(c.usage ?? c.command, c.description)),
874
+ '',
872
875
  header('OTHER'),
873
876
  cmd('browse', 'Interactive Ink browser'),
874
877
  cmd('tui', 'Alias for browse'),