tines 0.0.94 → 0.0.96

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/dist/index.js +12 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -3468,6 +3468,13 @@ var RUN_LOG_MAX_BYTES = 256 * 1024;
3468
3468
  var RUN_LOG_RETENTION_MS = 30 * 24 * 60 * 60 * 1e3;
3469
3469
  var RUN_LOG_RAW_MAX_BYTES = 64 * 1024 * 1024;
3470
3470
  var MODEL_PREDECESSORS = {
3471
+ "claude-fable-5-1": [
3472
+ "claude-fable-5",
3473
+ "claude-opus-5",
3474
+ "claude-opus-4-8",
3475
+ "claude-opus-4-7",
3476
+ "claude-opus-4-6"
3477
+ ],
3471
3478
  "claude-fable-5": ["claude-opus-5", "claude-opus-4-8", "claude-opus-4-7", "claude-opus-4-6"],
3472
3479
  "claude-opus-5": [
3473
3480
  "claude-opus-4-8",
@@ -4841,7 +4848,7 @@ function register2(program3) {
4841
4848
  issues.command("list").description("List issues across projects (hides done issues unless --all)").option("-p, --project <name>", "filter by project name or id").option("-s, --state <name>", "filter by state name or id").option("-c, --category <cat>", "filter by state category").option("-w, --workflow <id-or-name>", "filter by workflow").option("-a, --all", "include issues in done states").option(
4842
4849
  "--ready",
4843
4850
  "only issues that are actionable now (not done, not a duplicate, no open blockers)"
4844
- ).option("-q, --search <text>", "search titles and descriptions")
4851
+ ).option("-q, --search <text>", "search titles and descriptions").option("--brief", "omit description bodies (saves tokens when scanning)")
4845
4852
  ).action(
4846
4853
  async (opts) => {
4847
4854
  const api = client(opts);
@@ -4855,6 +4862,10 @@ function register2(program3) {
4855
4862
  hide_done: !opts.all,
4856
4863
  ready: opts.ready,
4857
4864
  q: opts.search,
4865
+ // The table below never prints descriptions, so --brief only
4866
+ // ever changes --json; it is off by default so existing
4867
+ // consumers of the JSON keep the field.
4868
+ brief: opts.brief,
4858
4869
  ...page
4859
4870
  })
4860
4871
  );
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tines",
3
- "version": "0.0.94",
3
+ "version": "0.0.96",
4
4
  "description": "CLI for Tines, an orchestration layer for AI agents",
5
5
  "repository": {
6
6
  "type": "git",