-
Notifications
You must be signed in to change notification settings - Fork 0
Add autonomous memory support #6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
9de2100
test: add comprehensive test suite and infrastructure
bburda b163240
ci: add GitHub Actions CI pipeline
bburda f161697
feat: add doctor command for installation health checks
bburda 2183ca1
feat: add planner module for memory graph analysis
bburda dc5a510
feat: add executor for planned memory actions with rollback
bburda e639820
feat: add git capture for extracting memory candidates
bburda cb7f1ea
feat: add plan, apply, and capture CLI commands
bburda a478f1d
feat: add plan, apply, and capture MCP tools
bburda e49d287
chore: bump version to 0.3.0
bburda 16a2056
style: fix ruff lint errors for CI
bburda 38263c4
fix: address PR review comments and CI formatting issues
bburda File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,42 @@ | ||
| .PHONY: install install-dev install-mcp inject-mcp test test-cov test-unit test-integration lint format doctor uninstall help | ||
|
|
||
| install: ## Install via pipx (CLI only) | ||
| pipx install -e . | ||
|
|
||
| install-mcp: ## Install via pipx with MCP support | ||
| pipx install -e '.[mcp]' | ||
|
|
||
| install-dev: ## Install for development (editable + dev deps) | ||
| pip install -e '.[mcp]' | ||
| pip install ruff pytest pytest-cov | ||
|
|
||
| inject-mcp: ## Add MCP to existing pipx install | ||
| pipx inject ai-memory-protocol mcp | ||
|
|
||
| test: ## Run all tests | ||
| pytest tests/ -v | ||
|
|
||
| test-unit: ## Run unit tests only (no Sphinx needed) | ||
| pytest tests/ -v -m "not integration" | ||
|
|
||
| test-integration: ## Run integration tests (requires Sphinx) | ||
| pytest tests/ -v -m integration | ||
|
|
||
| test-cov: ## Run tests with coverage | ||
| pytest tests/ -v --cov=ai_memory_protocol --cov-report=term-missing --cov-report=html | ||
|
|
||
| lint: ## Run linters | ||
| ruff check src/ tests/ | ||
| ruff format --check src/ tests/ | ||
|
|
||
| format: ## Format code | ||
| ruff format src/ tests/ | ||
|
|
||
| doctor: ## Verify installation | ||
| memory doctor | ||
|
|
||
| uninstall: ## Uninstall from pipx | ||
| pipx uninstall ai-memory-protocol | ||
|
|
||
| help: ## Show this help | ||
| @grep -E '^[a-zA-Z_-]+:.*## ' Makefile | sort | awk 'BEGIN {FS = ":.*## "}; {printf " \033[36m%-20s\033[0m %s\n", $$1, $$2}' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,3 @@ | ||
| """AI Memory Protocol — versioned, graph-based memory for AI agents.""" | ||
|
|
||
| __version__ = "0.2.0" | ||
| __version__ = "0.3.0" |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.