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 +7 -1
- package/README.md +5 -1
- package/SECURITY.md +2 -1
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/docs/release-checklist.md +2 -2
- package/package.json +14 -5
- package/plugins/briefops-codex/.codex-plugin/plugin.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,7 +4,13 @@
|
|
|
4
4
|
|
|
5
5
|
- No changes yet.
|
|
6
6
|
|
|
7
|
-
## 1.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
|
-
|
|
3
|
+
[](https://www.npmjs.com/package/briefops)
|
|
4
|
+
[](https://github.com/simony-816/briefops/actions/workflows/ci.yml)
|
|
5
|
+
[](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
|
-
|
|
|
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.
|
|
1
|
+
export declare const briefopsVersion = "1.0.1";
|
package/dist/version.js
CHANGED
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "briefops",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "Local-first
|
|
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": "
|
|
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
|
-
"
|
|
37
|
+
"cli",
|
|
38
|
+
"developer-tools",
|
|
39
|
+
"typescript"
|
|
31
40
|
],
|
|
32
41
|
"dependencies": {
|
|
33
|
-
"commander": "^
|
|
42
|
+
"commander": "^15.0.0",
|
|
34
43
|
"yaml": "^2.5.1",
|
|
35
44
|
"zod": "^3.23.8"
|
|
36
45
|
},
|