Skip to content

Commit 9a649e8

Browse files
committed
release: version 2.30.0
2 parents 3c24024 + 8259bb6 commit 9a649e8

47 files changed

Lines changed: 4786 additions & 666 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.claude-plugin/plugin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"_generated": "Auto-generated by scripts/build-claude-plugin.sh \u2014 do not hand-edit",
33
"name": "agent-notes",
4-
"version": "2.29.0",
4+
"version": "2.30.0",
55
"description": "AI agent configuration manager for Claude Code, OpenCode, and Copilot",
66
"author": {
77
"name": "Eugene Naumov"

.claude-plugin/skills/chrome-test/SKILL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ Use once — after linters and tests pass, before committing.
8080
4. Dev session reads `report-<uuid>.md` directly from the bus when the operator relays the trigger, triages, fixes failures, optionally mints a NEW `<uuid>` and repeats for only the fixed scenarios.
8181
5. All scenarios PASS → gate closes, commit proceeds.
8282

83-
**This is the default mode the lead uses at end of a frontend feature.**
83+
**This is the mode the lead uses when the browser-test gate fires at the end of a frontend feature.**
8484

8585
### Mode 3 — Manual Ad-Hoc
8686

.github/workflows/validate.yml

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,15 @@ jobs:
1313
python-version: ["3.10", "3.12"]
1414
steps:
1515
- uses: actions/checkout@v4
16-
- name: Set up Python ${{ matrix.python-version }}
17-
uses: actions/setup-python@v5
16+
- name: Install uv
17+
uses: astral-sh/setup-uv@v6
1818
with:
1919
python-version: ${{ matrix.python-version }}
2020
- name: Install dependencies
21-
run: |
22-
pip install -e ".[dev]"
23-
export PYTHONPATH=.
21+
run: uv sync
2422
- name: Run tests
25-
run: PYTHONPATH=. python3 -m pytest tests/ -v
23+
run: uv run pytest tests/ -v
2624
- name: Verify build
27-
run: PYTHONPATH=. python3 -m agent_notes build
25+
run: uv run python -m agent_notes build
2826
- name: Validate configs
29-
run: PYTHONPATH=. python3 -m agent_notes validate
27+
run: uv run python -m agent_notes validate

.opencode-plugin/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Auto-generated by scripts/build-opencode-plugin.sh — do not hand-edit
2-
// agent-notes OpenCode plugin v2.29.0
2+
// agent-notes OpenCode plugin v2.30.0
33
// AI agent configuration manager for Claude Code, OpenCode, and Copilot
44
//
55
// This plugin runs a SessionStart hook that surfaces agent-notes context

.opencode-plugin/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"_generated": "Auto-generated by scripts/build-opencode-plugin.sh \u2014 do not hand-edit",
33
"name": "agent-notes-opencode-plugin",
4-
"version": "2.29.0",
4+
"version": "2.30.0",
55
"description": "AI agent configuration manager for Claude Code, OpenCode, and Copilot",
66
"main": "./index.js",
77
"type": "module",

README.md

Lines changed: 55 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,6 @@ pipx install agent-notes
3131
agent-notes install
3232
```
3333

34-
Update anytime:
35-
36-
```bash
37-
pipx upgrade agent-notes && agent-notes install
38-
```
39-
4034
**venv + pip (if you prefer to manage your own environment):**
4135

4236
```bash
@@ -45,12 +39,34 @@ pip install agent-notes
4539
agent-notes install
4640
```
4741

48-
Update anytime:
42+
### Upgrade from a previous version
43+
44+
**Update in place (normal upgrade):**
45+
46+
With pipx:
47+
```bash
48+
pipx upgrade agent-notes && agent-notes install
49+
```
4950

51+
With venv:
5052
```bash
5153
pip install --upgrade agent-notes && agent-notes install
5254
```
5355

56+
**Clean reinstall (from an older version, fresh slate):**
57+
58+
If you are on a significantly older version or want a fresh configuration, uninstall completely and reinstall:
59+
60+
With pipx:
61+
```bash
62+
agent-notes uninstall && pipx uninstall agent-notes && pipx install agent-notes && agent-notes install
63+
```
64+
65+
With venv:
66+
```bash
67+
agent-notes uninstall && pip uninstall agent-notes && pip install agent-notes && agent-notes install
68+
```
69+
5470
### Local build (developers)
5571

5672
```bash
@@ -87,6 +103,36 @@ agent-notes config provider openrouter # prints "configured" or "no key"
87103

88104
</details>
89105

106+
<details>
107+
<summary>Uninstall</summary>
108+
109+
To fully remove agent-notes:
110+
111+
**pipx:**
112+
113+
```bash
114+
agent-notes uninstall
115+
pipx uninstall agent-notes
116+
```
117+
118+
Run `agent-notes uninstall` first — it removes agent files, hooks, settings.json entries, context file, and state that agent-notes installed. Then `pipx uninstall` removes the package itself. The `agent-notes uninstall` command must run while the CLI is still installed.
119+
120+
**venv:**
121+
122+
```bash
123+
agent-notes uninstall
124+
deactivate
125+
rm -rf .venv
126+
```
127+
128+
Run `agent-notes uninstall` first to clean up installed components, then deactivate the environment and delete the `.venv` directory.
129+
130+
**Note on memory and vault permissions:**
131+
132+
If you configured agent-notes to access your memory vault (Obsidian or local), those read/write permissions are intentionally left in place after uninstalling so Claude Code and other tools can still access your notes. To remove them, edit `~/.claude/settings.json` and delete the entries under `permissions.allow` that reference your vault path (e.g. `Read(/path/to/your/vault/**)`, `Write(/path/to/your/vault/**)`, `Edit(/path/to/your/vault/**)`).
133+
134+
</details>
135+
90136
---
91137

92138
<details>
@@ -377,6 +423,8 @@ By default, `agent-notes install` re-runs the interactive wizard and prompts for
377423

378424
The plugin build scripts (`scripts/build-claude-plugin.sh`, `scripts/build-opencode-plugin.sh`) automatically use `.venv/bin/python` when present, fall back to system `python3`, and honor a `PYTHON=` override.
379425

426+
**Note:** `uv` is used only in the local development and release workflow (see `scripts/release`). It is not required to install or use agent-notes — end users should use `pipx` or `pip` / `venv`.
427+
380428
### Test structure
381429

382430
- `tests/functional/` — Unit tests

agent_notes/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.29.0
1+
2.30.0

agent_notes/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,7 @@ def main():
291291

292292
# hook
293293
p_hook = subparsers.add_parser("hook", help="Claude Code hook integrations")
294-
p_hook.add_argument("subaction", choices=["memory-bridge", "session-discover"],
294+
p_hook.add_argument("subaction", choices=["memory-bridge", "precompact-memory-bridge", "session-discover", "guard-credentials"],
295295
help="Hook to run")
296296

297297
# cost-report

0 commit comments

Comments
 (0)