agentel 0.2.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.
@@ -0,0 +1,69 @@
1
+ # Release Checklist
2
+
3
+ Use this checklist before publishing the `agentlogs` npm package.
4
+
5
+ ## Prerequisites
6
+
7
+ - Confirm the npm publishing account can publish `agentlogs`.
8
+ - Confirm `https://github.com/brianlzhou/agentlog` is reachable for GitHub
9
+ shorthand installs such as `npm install -g brianlzhou/agentlog`.
10
+ - Use Node.js 20 or newer.
11
+ - Install optional local tools used by importers and tests: `sqlite3`, `rg`,
12
+ `unzip`, and `zstd`.
13
+ - Confirm `package.json` has the intended `name`, `version`, `repository`,
14
+ `bin`, `files`, and `engines`.
15
+
16
+ ## Verify
17
+
18
+ ```sh
19
+ npm install
20
+ npm run check
21
+ npm test
22
+ npm run pack:dry
23
+ npm run smoke:pack
24
+ ```
25
+
26
+ `npm run pack:dry` should include only the publishable package surface:
27
+
28
+ - `bin/`
29
+ - `src/`
30
+ - selected docs
31
+ - `README.md`
32
+ - `LICENSE`
33
+ - `agentlog-spec.md`
34
+ - `package.json`
35
+
36
+ It should not include local settings, test fixtures, `.git`, `.claude`, logs,
37
+ or archive data.
38
+
39
+ `npm run smoke:pack` creates a tarball, installs it into a temporary prefix,
40
+ installs the source checkout into another temporary prefix as a local stand-in
41
+ for `npm install -g brianlzhou/agentlog`, and runs each install with isolated
42
+ home/config directories:
43
+
44
+ ```sh
45
+ agentlog help
46
+ agentlogs help
47
+ agentlog init --yes --skip-import --no-autostart --no-claude --no-recall --no-telemetry
48
+ agentlog doctor --json
49
+ ```
50
+
51
+ ## Publish
52
+
53
+ When the checks pass, publish from a clean working tree:
54
+
55
+ ```sh
56
+ npm publish --access public
57
+ ```
58
+
59
+ For the first public release, use npm 2FA or trusted publishing. The package
60
+ name is plural (`agentlogs`) so it can coexist with the singular CLI command.
61
+ Keep the `agentlog` binary for normal usage; the package also ships an
62
+ `agentlogs` binary alias so `npx agentlogs init` works.
63
+
64
+ After tagging and pushing the release, sanity-check both public install forms:
65
+
66
+ ```sh
67
+ npm install -g agentlogs
68
+ npm install -g brianlzhou/agentlog#v0.2.0
69
+ ```
package/package.json ADDED
@@ -0,0 +1,57 @@
1
+ {
2
+ "name": "agentel",
3
+ "version": "0.2.0",
4
+ "description": "Local-first archive and recall layer for agent coding sessions.",
5
+ "type": "commonjs",
6
+ "license": "MIT",
7
+ "author": "Brian Zhou",
8
+ "homepage": "https://github.com/brianlzhou/agentlog#readme",
9
+ "repository": {
10
+ "type": "git",
11
+ "url": "git+https://github.com/brianlzhou/agentlog.git"
12
+ },
13
+ "bugs": {
14
+ "url": "https://github.com/brianlzhou/agentlog/issues"
15
+ },
16
+ "keywords": [
17
+ "agent",
18
+ "agents",
19
+ "ai",
20
+ "archive",
21
+ "cli",
22
+ "codex",
23
+ "claude",
24
+ "cursor",
25
+ "cline",
26
+ "devin",
27
+ "opencode",
28
+ "aider",
29
+ "recall"
30
+ ],
31
+ "bin": {
32
+ "agentlog": "./bin/agentlog.js",
33
+ "agentlog-recall": "./bin/agentlog-recall.js",
34
+ "agentel": "./bin/agentlog.js"
35
+ },
36
+ "files": [
37
+ "bin/",
38
+ "src/",
39
+ "docs/code-reference.md",
40
+ "docs/history-source-handling.md",
41
+ "docs/release.md",
42
+ "agentlog-spec.md",
43
+ "README.md",
44
+ "LICENSE"
45
+ ],
46
+ "scripts": {
47
+ "prepack": "npm run check && npm test",
48
+ "pack:dry": "npm pack --dry-run",
49
+ "smoke:pack": "node scripts/smoke-pack.js",
50
+ "test": "node --test",
51
+ "check": "node scripts/check-syntax.js"
52
+ },
53
+ "engines": {
54
+ "node": ">=20"
55
+ },
56
+ "packageManager": "npm@11.5.1"
57
+ }