memorybot 0.0.1__py3-none-any.whl
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.
memorybot/__init__.py
ADDED
memorybot/__main__.py
ADDED
|
@@ -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())
|
|
@@ -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,7 @@
|
|
|
1
|
+
memorybot/__init__.py,sha256=PerJ1aBGKPGfITabc2lo6jKK_dSx1cyu6b1iy5PGyao,44
|
|
2
|
+
memorybot/__main__.py,sha256=am0wp7LYHwtz51rgOQFxr1qeYI4AzZOc-x3BMo0DUeY,774
|
|
3
|
+
memorybot-0.0.1.dist-info/METADATA,sha256=fChjS9A1trKClTH6ACRheAc-WaVaf5TsaGrtI2m_kcs,1498
|
|
4
|
+
memorybot-0.0.1.dist-info/WHEEL,sha256=QccIxa26bgl1E6uMy58deGWi-0aeIkkangHcxk2kWfw,87
|
|
5
|
+
memorybot-0.0.1.dist-info/entry_points.txt,sha256=n8Ik4fqrgTYfT-bBtkRB1i0aVF6R_ZGFCdewLdVL4z0,47
|
|
6
|
+
memorybot-0.0.1.dist-info/licenses/LICENSE,sha256=WKA7n4NGbpUyve4ag9vfQ8l4U7G6VTwUw2oqIn2pwnA,1067
|
|
7
|
+
memorybot-0.0.1.dist-info/RECORD,,
|
|
@@ -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.
|