memorybot 0.0.1__tar.gz

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.
@@ -0,0 +1,39 @@
1
+ # Python
2
+ __pycache__/
3
+ *.py[cod]
4
+ *$py.class
5
+ *.so
6
+ .Python
7
+ build/
8
+ develop-eggs/
9
+ dist/
10
+ downloads/
11
+ eggs/
12
+ .eggs/
13
+ lib/
14
+ lib64/
15
+ parts/
16
+ sdist/
17
+ var/
18
+ wheels/
19
+ *.egg-info/
20
+ *.egg
21
+ .installed.cfg
22
+
23
+ # Virtual environments
24
+ .venv/
25
+ venv/
26
+ env/
27
+ ENV/
28
+
29
+ # IDE
30
+ .vscode/
31
+ .idea/
32
+ *.swp
33
+
34
+ # OS
35
+ .DS_Store
36
+ Thumbs.db
37
+
38
+ # PyPI publishing
39
+ .pypirc
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Nolan Love
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is furnished
10
+ to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,56 @@
1
+ Metadata-Version: 2.4
2
+ Name: memorybot
3
+ Version: 0.0.1
4
+ Summary: MemoryBot CLI — your personal knowledge graph from the command line
5
+ Project-URL: Homepage, https://www.memorybot.com
6
+ Project-URL: Repository, https://github.com/nolanlove/memorybot-cli
7
+ Author-email: Nolan Love <nolanlove@yahoo.com>
8
+ License: MIT
9
+ License-File: LICENSE
10
+ Keywords: ai-agents,cli,knowledge-graph,mcp,memory,memorybot
11
+ Classifier: Development Status :: 1 - Planning
12
+ Classifier: Intended Audience :: Developers
13
+ Classifier: License :: OSI Approved :: MIT License
14
+ Classifier: Operating System :: OS Independent
15
+ Classifier: Programming Language :: Python :: 3
16
+ Classifier: Programming Language :: Python :: 3.9
17
+ Classifier: Programming Language :: Python :: 3.10
18
+ Classifier: Programming Language :: Python :: 3.11
19
+ Classifier: Programming Language :: Python :: 3.12
20
+ Classifier: Topic :: Software Development :: Libraries
21
+ Classifier: Topic :: Utilities
22
+ Requires-Python: >=3.9
23
+ Description-Content-Type: text/markdown
24
+
25
+ # MemoryBot CLI
26
+
27
+ > Your personal knowledge graph from the command line.
28
+
29
+ **This is a placeholder release reserving the `memorybot` package name on PyPI.**
30
+
31
+ The full MemoryBot CLI is under active development. Visit
32
+ [memorybot.com](https://www.memorybot.com) to learn more about the platform.
33
+
34
+ ## Install
35
+
36
+ ```bash
37
+ pip install memorybot
38
+ ```
39
+
40
+ or, recommended for CLI tools:
41
+
42
+ ```bash
43
+ pipx install memorybot
44
+ ```
45
+
46
+ ## Usage
47
+
48
+ ```bash
49
+ mb
50
+ ```
51
+
52
+ Currently prints a placeholder banner. Real commands coming soon.
53
+
54
+ ## License
55
+
56
+ MIT
@@ -0,0 +1,32 @@
1
+ # MemoryBot CLI
2
+
3
+ > Your personal knowledge graph from the command line.
4
+
5
+ **This is a placeholder release reserving the `memorybot` package name on PyPI.**
6
+
7
+ The full MemoryBot CLI is under active development. Visit
8
+ [memorybot.com](https://www.memorybot.com) to learn more about the platform.
9
+
10
+ ## Install
11
+
12
+ ```bash
13
+ pip install memorybot
14
+ ```
15
+
16
+ or, recommended for CLI tools:
17
+
18
+ ```bash
19
+ pipx install memorybot
20
+ ```
21
+
22
+ ## Usage
23
+
24
+ ```bash
25
+ mb
26
+ ```
27
+
28
+ Currently prints a placeholder banner. Real commands coming soon.
29
+
30
+ ## License
31
+
32
+ MIT
@@ -0,0 +1,39 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "memorybot"
7
+ version = "0.0.1"
8
+ description = "MemoryBot CLI — your personal knowledge graph from the command line"
9
+ readme = "README.md"
10
+ requires-python = ">=3.9"
11
+ license = { text = "MIT" }
12
+ authors = [
13
+ { name = "Nolan Love", email = "nolanlove@yahoo.com" }
14
+ ]
15
+ keywords = ["memorybot", "memory", "knowledge-graph", "mcp", "ai-agents", "cli"]
16
+ classifiers = [
17
+ "Development Status :: 1 - Planning",
18
+ "Intended Audience :: Developers",
19
+ "License :: OSI Approved :: MIT License",
20
+ "Operating System :: OS Independent",
21
+ "Programming Language :: Python :: 3",
22
+ "Programming Language :: Python :: 3.9",
23
+ "Programming Language :: Python :: 3.10",
24
+ "Programming Language :: Python :: 3.11",
25
+ "Programming Language :: Python :: 3.12",
26
+ "Topic :: Software Development :: Libraries",
27
+ "Topic :: Utilities",
28
+ ]
29
+ dependencies = []
30
+
31
+ [project.urls]
32
+ Homepage = "https://www.memorybot.com"
33
+ Repository = "https://github.com/nolanlove/memorybot-cli"
34
+
35
+ [project.scripts]
36
+ mb = "memorybot.__main__:main"
37
+
38
+ [tool.hatch.build.targets.wheel]
39
+ packages = ["src/memorybot"]
@@ -0,0 +1,3 @@
1
+ """MemoryBot CLI."""
2
+
3
+ __version__ = "0.0.1"
@@ -0,0 +1,29 @@
1
+ """MemoryBot CLI entry point."""
2
+
3
+ import sys
4
+
5
+
6
+ BANNER = r"""
7
+ __ __ ____ _
8
+ | \/ | ___ _ __ ___ ___ _ __ _ _| __ ) ___ | |_
9
+ | |\/| |/ _ \ '_ ` _ \ / _ \| '__| | | | _ \ / _ \| __|
10
+ | | | | __/ | | | | | (_) | | | |_| | |_) | (_) | |_
11
+ |_| |_|\___|_| |_| |_|\___/|_| \__, |____/ \___/ \__|
12
+ |___/
13
+ """
14
+
15
+
16
+ def main() -> int:
17
+ """Entry point for the `mb` command."""
18
+ print(BANNER)
19
+ print("MemoryBot CLI — coming soon.")
20
+ print()
21
+ print("This is a placeholder release. The full CLI is under construction.")
22
+ print("Learn more: https://www.memorybot.com")
23
+ print()
24
+ print("Installed version: 0.0.1")
25
+ return 0
26
+
27
+
28
+ if __name__ == "__main__":
29
+ sys.exit(main())