briefops 1.0.0 → 1.0.1

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/CHANGELOG.md CHANGED
@@ -4,7 +4,13 @@
4
4
 
5
5
  - No changes yet.
6
6
 
7
- ## 1.0.0
7
+ ## 1.0.1 - 2026-06-09
8
+
9
+ - Clarify supported security versions for 1.x and 0.2.x alpha.
10
+ - Polish repository discovery metadata, README badges, and npm package keywords.
11
+ - Upgrade Commander to 15.0.0.
12
+
13
+ ## 1.0.0 - 2026-06-09
8
14
 
9
15
  - Add local harness router exports for `AGENTS.md`, `CLAUDE.md`, Cursor rules, and `export all`.
10
16
  - Add context budget inspection and raw-vs-prime context comparison.
package/README.md CHANGED
@@ -1,6 +1,10 @@
1
1
  # BriefOps
2
2
 
3
- BriefOps is a local-first, token-aware persistent work history layer for AI coding agents.
3
+ [![npm version](https://img.shields.io/npm/v/briefops.svg)](https://www.npmjs.com/package/briefops)
4
+ [![CI](https://github.com/simony-816/briefops/actions/workflows/ci.yml/badge.svg)](https://github.com/simony-816/briefops/actions/workflows/ci.yml)
5
+ [![License: MIT](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE)
6
+
7
+ BriefOps is a local-first CLI for AI coding agents with persistent memory, handoffs, and token-aware context.
4
8
 
5
9
  The goal is not just to generate a good brief. The goal is to let a user finish an AI coding task, promote useful work history into durable memory, and start a fresh Codex or Claude Code thread where the same worker can continue with prior decisions, lessons, risks, and judgment profile.
6
10
 
package/SECURITY.md CHANGED
@@ -6,7 +6,8 @@ BriefOps is a local-first CLI. It stores project memory, work logs, generated pr
6
6
 
7
7
  | Version | Supported |
8
8
  | --- | --- |
9
- | 0.2.x alpha | Security fixes accepted |
9
+ | 1.x | Security fixes accepted |
10
+ | 0.2.x alpha | Not supported; upgrade to 1.x |
10
11
 
11
12
  ## Reporting A Vulnerability
12
13
 
package/dist/version.d.ts CHANGED
@@ -1 +1 @@
1
- export declare const briefopsVersion = "1.0.0";
1
+ export declare const briefopsVersion = "1.0.1";
package/dist/version.js CHANGED
@@ -1,3 +1,3 @@
1
1
  // Keep this version in sync with package.json.
2
- export const briefopsVersion = "1.0.0";
2
+ export const briefopsVersion = "1.0.1";
3
3
  //# sourceMappingURL=version.js.map
@@ -61,8 +61,8 @@ Publish:
61
61
 
62
62
  ```bash
63
63
  git status --short --branch
64
- git tag v1.0.0
64
+ git tag v<version>
65
65
  git push origin HEAD
66
- git push origin v1.0.0
66
+ git push origin v<version>
67
67
  npm publish
68
68
  ```
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "briefops",
3
- "version": "1.0.0",
4
- "description": "Local-first, token-aware skill and briefing layer for AI coding agents.",
3
+ "version": "1.0.1",
4
+ "description": "Local-first CLI for AI coding agents with persistent memory, handoffs, and token-aware context.",
5
5
  "type": "module",
6
6
  "bin": {
7
- "briefops": "./dist/index.js"
7
+ "briefops": "dist/index.js"
8
8
  },
9
9
  "scripts": {
10
10
  "build": "tsc -p tsconfig.json",
@@ -22,15 +22,24 @@
22
22
  "homepage": "https://github.com/simony-816/briefops#readme",
23
23
  "keywords": [
24
24
  "codex",
25
+ "claude-code",
26
+ "cursor",
25
27
  "ai-agents",
28
+ "coding-agents",
29
+ "agent-memory",
30
+ "context-engineering",
31
+ "prompt-engineering",
26
32
  "local-first",
33
+ "privacy-first",
27
34
  "memory",
28
35
  "context",
29
36
  "handoff",
30
- "developer-tools"
37
+ "cli",
38
+ "developer-tools",
39
+ "typescript"
31
40
  ],
32
41
  "dependencies": {
33
- "commander": "^12.1.0",
42
+ "commander": "^15.0.0",
34
43
  "yaml": "^2.5.1",
35
44
  "zod": "^3.23.8"
36
45
  },
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "briefops",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Local-first, token-aware persistent work history for Codex workflows.",
5
5
  "author": {
6
6
  "name": "BriefOps contributors",