diff --git a/.gitignore b/.gitignore index 24df64b..ee85357 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,10 @@ node_modules/ dist/ coverage/ +test-results/ +playwright-report/ +.proofs/ +changelog-content.md *.log *.tgz .DS_Store diff --git a/.proofs/after/01-success.png b/.proofs/after/01-success.png deleted file mode 100644 index aff78b1..0000000 Binary files a/.proofs/after/01-success.png and /dev/null differ diff --git a/.proofs/after/02-missing.png b/.proofs/after/02-missing.png deleted file mode 100644 index 2b75b36..0000000 Binary files a/.proofs/after/02-missing.png and /dev/null differ diff --git a/.proofs/after/03-decode-error.png b/.proofs/after/03-decode-error.png deleted file mode 100644 index 20977fb..0000000 Binary files a/.proofs/after/03-decode-error.png and /dev/null differ diff --git a/.proofs/before/01-success.png b/.proofs/before/01-success.png deleted file mode 100644 index cdf2547..0000000 Binary files a/.proofs/before/01-success.png and /dev/null differ diff --git a/.proofs/before/02-missing.png b/.proofs/before/02-missing.png deleted file mode 100644 index 5f40752..0000000 Binary files a/.proofs/before/02-missing.png and /dev/null differ diff --git a/.proofs/render-snapshots.mts b/.proofs/render-snapshots.mts deleted file mode 100644 index 935e218..0000000 --- a/.proofs/render-snapshots.mts +++ /dev/null @@ -1,44 +0,0 @@ -import express from 'express'; -import { buildPage } from '../src/hub/auth-callback.ts'; - -const states: Array<{ - path: string; - title: string; - message: string; - status: 'success' | 'error'; - dashboardUrl?: string; -}> = [ - { - path: '/success', - title: 'Login successful!', - message: 'You can close this window and return to the terminal.', - status: 'success', - dashboardUrl: 'https://agentage.io/dashboard', - }, - { - path: '/missing', - title: 'Login failed', - message: 'Missing authentication parameters.', - status: 'error', - }, - { - path: '/decode', - title: 'Login failed', - message: 'Failed to decode access token.', - status: 'error', - }, -]; - -const app = express(); -for (const s of states) { - app.get(s.path, (_req, res) => { - res.type('html').send( - buildPage({ title: s.title, message: s.message, status: s.status, dashboardUrl: s.dashboardUrl }) - ); - }); -} - -app.listen(9877, () => { - console.log('cli-callback snapshot server on :9877'); - console.log(states.map((s) => ' http://127.0.0.1:9877' + s.path).join('\n')); -}); diff --git a/changelog-content.md b/changelog-content.md deleted file mode 100644 index 6df1d1f..0000000 --- a/changelog-content.md +++ /dev/null @@ -1,8 +0,0 @@ -### New Features -- Add `setup` and `status` commands as part of the agentage Memory client reboot -- Add daemon autostart on boot/login (platform-aware configuration) -- Handle machine tombstoned state (410 response) gracefully in the daemon - -### Improvements -- Route daemon version-mismatch notice and update notice to stderr for cleaner stdout output -- Reduce update-check cache from 24h to 1h for more timely update notifications diff --git a/test-results/.last-run.json b/test-results/.last-run.json deleted file mode 100644 index cbcc1fb..0000000 --- a/test-results/.last-run.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "status": "passed", - "failedTests": [] -} \ No newline at end of file