repositories
loading repo index
repositories
loading repo index
repository
loading code, commits, and activity
public Clawd ADK gateway launch mirror
stars
latest
clone command
git clone gitlawb://did:key:z6Mkq5mY...iFZ5/my-project-publ...git clone gitlawb://did:key:z6Mkq5mY.../my-project-publ...2fa351d6docs: add automaton and perps launch sources15d ago| #1 | [build-system] |
| #2 | requires = ["setuptools>=61.0", "wheel"] |
| #3 | build-backend = "setuptools.build_meta" |
| #4 | |
| #5 | [project] |
| #6 | name = "mnemosyne-memory" |
| #7 | dynamic = ["version"] |
| #8 | description = "Clawd Memory: local-first SQLite memory for agents, backed by the Mnemosyne engine" |
| #9 | readme = "README.md" |
| #10 | license = {text = "MIT"} |
| #11 | requires-python = ">=3.9" |
| #12 | authors = [ |
| #13 | {name = "Abdias J", email = "abdi.moya@gmail.com"} |
| #14 | ] |
| #15 | keywords = [ |
| #16 | "clawd", |
| #17 | "ai", |
| #18 | "memory", |
| #19 | "sqlite", |
| #20 | "agent", |
| #21 | "llm", |
| #22 | "context", |
| #23 | "embeddings", |
| #24 | "vector-store", |
| #25 | "solana", |
| #26 | "perpetual-trading", |
| #27 | "obsidian", |
| #28 | "agentic-harness", |
| #29 | ] |
| #30 | classifiers = [ |
| #31 | "Development Status :: 5 - Production/Stable", |
| #32 | "Intended Audience :: Developers", |
| #33 | "Topic :: Software Development :: Libraries :: Python Modules", |
| #34 | "Topic :: Scientific/Engineering :: Artificial Intelligence", |
| #35 | "License :: OSI Approved :: MIT License", |
| #36 | "Programming Language :: Python :: 3", |
| #37 | "Programming Language :: Python :: 3.9", |
| #38 | "Programming Language :: Python :: 3.10", |
| #39 | "Programming Language :: Python :: 3.11", |
| #40 | "Programming Language :: Python :: 3.12", |
| #41 | "Operating System :: OS Independent", |
| #42 | ] |
| #43 | |
| #44 | [project.optional-dependencies] |
| #45 | llm = ["ctransformers>=0.2.27", "llama-cpp-python>=0.2.0", "huggingface-hub>=0.20"] |
| #46 | embeddings = ["fastembed>=0.3.0"] |
| #47 | mcp = ["mcp>=1.0.0; python_version >= '3.10'", "anyio>=4.0; python_version >= '3.10'"] |
| #48 | all = ["ctransformers>=0.2.27", "llama-cpp-python>=0.2.0", "huggingface-hub>=0.20", "fastembed>=0.3.0", "mcp>=1.0.0; python_version >= '3.10'", "anyio>=4.0; python_version >= '3.10'"] |
| #49 | dev = ["pytest>=7.0", "build", "twine"] |
| #50 | |
| #51 | [project.urls] |
| #52 | Homepage = "https://clawd.x402.wtf/site/" |
| #53 | Documentation = "https://clawd.x402.wtf/site/" |
| #54 | |
| #55 | [project.scripts] |
| #56 | mnemosyne-install = "mnemosyne.install:install" |
| #57 | mnemosyne-uninstall = "mnemosyne.install:uninstall" |
| #58 | mnemosyne = "mnemosyne.cli:run_cli" |
| #59 | clawd-brain = "mnemosyne.clawd_brain:run_cli" |
| #60 | |
| #61 | [tool.setuptools.packages.find] |
| #62 | exclude = ["tests*", "benchmark*", "scripts*", "docs*", "assets*"] |
| #63 | |
| #64 | [tool.setuptools.dynamic] |
| #65 | version = {attr = "mnemosyne.__version__"} |
| #66 |