ethagent 1.0.3 → 1.0.4

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ethagent",
3
- "version": "1.0.3",
3
+ "version": "1.0.4",
4
4
  "description": "A privacy-first AI agent with a portable Ethereum identity",
5
5
  "type": "module",
6
6
  "main": "bin/ethagent.js",
package/src/cli/main.tsx CHANGED
@@ -18,7 +18,7 @@ const __dirname = path.dirname(fileURLToPath(import.meta.url))
18
18
  const pkgPath = path.resolve(__dirname, '..', '..', 'package.json')
19
19
  const pkg = JSON.parse(fs.readFileSync(pkgPath, 'utf8'))
20
20
 
21
- updateNotifier({ pkg }).notify()
21
+ updateNotifier({ pkg, updateCheckInterval: 0 }).notify()
22
22
 
23
23
  function readVersion(): string {
24
24
  try {
@@ -39,7 +39,7 @@ export const IdentitySummary: React.FC<{
39
39
  }
40
40
 
41
41
  const lastSavedRow = needsBackup
42
- ? { label: 'unsaved', value: changedFiles.length > 0 ? changedFiles.join(', ') : 'markdown files', tone: 'warn' as const, highlight: true }
42
+ ? { label: 'to publish', value: changedFiles.length > 0 ? changedFiles.join(', ') : 'markdown files', tone: 'warn' as const, highlight: true }
43
43
  : { label: 'last saved', value: lastBackup, tone: lastBackup === 'never' ? 'dim' as const : 'ok' as const }
44
44
 
45
45
  const summaryRows = [
@@ -50,7 +50,7 @@ export const RecoveryConfirmScreen: React.FC<RecoveryConfirmScreenProps> = ({ mo
50
50
  <Text color={theme.textSubtle}>{detail}</Text>
51
51
  {isPublish && changedFiles.length > 0 && (
52
52
  <Box marginTop={1}>
53
- <Text color={theme.textSubtle}>unsaved changes: </Text>
53
+ <Text color={theme.textSubtle}>to publish: </Text>
54
54
  <Text color="red" bold>{changedFiles.join(', ')}</Text>
55
55
  </Box>
56
56
  )}