autark-cli 0.2.0 → 0.3.0

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/autark.mjs +2 -2
  2. package/package.json +2 -2
package/autark.mjs CHANGED
@@ -22,7 +22,7 @@ const CREDS_PATH = process.env.AUTARK_CREDENTIALS || path.join(AUTARK_HOME, 'cre
22
22
  // loop, so they need to be initialized at module-load time before the
23
23
  // main().catch() call below.
24
24
  const RAW_RUNTIME_BASE = process.env.AUTARK_RUNTIME_RAW_BASE
25
- || 'https://autark.kushalsm.com/runtime'
25
+ || 'https://autark.sh/runtime'
26
26
  const SKILL_NAMES = ['autark', 'plumcake', 'chrome-relay', 'email', 'outreach', 'email-finder']
27
27
  const ECOSYSTEM_CLIS = ['autark-cli', 'plumcake-cli', 'chrome-relay']
28
28
  const PROGRAM_FILES = ['start.md', 'double-down.md', 'check.md', 'followup.md']
@@ -1084,7 +1084,7 @@ function printProductContext(r) {
1084
1084
  console.log(`# ${r.product.slug} — ${r.product.name}\n`)
1085
1085
  if (r.product.tagline) console.log(`> ${r.product.tagline}\n`)
1086
1086
  console.log(`## Brief\n`)
1087
- console.log(r.product.brief?.trim() || '(no brief set — owner can add one at https://autark.kushalsm.com)')
1087
+ console.log(r.product.brief?.trim() || '(no brief set — owner can add one at https://autark.sh)')
1088
1088
  if (!r.hypotheses?.length) {
1089
1089
  console.log(`\n## Hypotheses\n\n(none yet — create one with: autark hypothesis create --product-id <product_id> --md @hyp.md)`)
1090
1090
  } else {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "autark-cli",
3
- "version": "0.2.0",
4
- "description": "CLI for autark hypothesis-driven product runbooks. Track products, hypotheses, runs, and actions from the terminal.",
3
+ "version": "0.3.0",
4
+ "description": "CLI for autark \u2014 hypothesis-driven product runbooks. Track products, hypotheses, runs, and actions from the terminal.",
5
5
  "type": "module",
6
6
  "license": "MIT",
7
7
  "bin": {