mindnet 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.
- mindnet-0.0.1/.gitignore +33 -0
- mindnet-0.0.1/PKG-INFO +22 -0
- mindnet-0.0.1/README.md +12 -0
- mindnet-0.0.1/pyproject.toml +18 -0
- mindnet-0.0.1/src/mindnet/__init__.py +3 -0
mindnet-0.0.1/.gitignore
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
node_modules
|
|
2
|
+
dist
|
|
3
|
+
.DS_Store
|
|
4
|
+
*.log
|
|
5
|
+
.vite
|
|
6
|
+
|
|
7
|
+
# 验证产物(playwright 截图/快照)
|
|
8
|
+
.playwright-mcp/
|
|
9
|
+
*.jpeg
|
|
10
|
+
|
|
11
|
+
# 多媒体素材 / 切片——本机 serve,不进 git(POC 阶段,大文件)
|
|
12
|
+
clips/
|
|
13
|
+
|
|
14
|
+
# 内脑裸仓数据(每用户一个 bare repo = 用户身家)+ 备份 + 验收环境运行态——绝不进代码库
|
|
15
|
+
agent/data/
|
|
16
|
+
/data/
|
|
17
|
+
agent/run/
|
|
18
|
+
|
|
19
|
+
# 密钥 / 本地配置——绝不进 git
|
|
20
|
+
*.env
|
|
21
|
+
.env.*
|
|
22
|
+
secrets.*
|
|
23
|
+
agent/secrets.env
|
|
24
|
+
|
|
25
|
+
# Python 缓存
|
|
26
|
+
__pycache__/
|
|
27
|
+
*.pyc
|
|
28
|
+
|
|
29
|
+
# 反向形式化中间产物(poc_braindoc.json 是交付物、要留;raw 是中间态)
|
|
30
|
+
agent/fixtures/poc_raw.json
|
|
31
|
+
|
|
32
|
+
# 进料测试 fixture(各 extractor make_fixture 生成,可重建,不入库)
|
|
33
|
+
agent/ingest/fixtures/
|
mindnet-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: mindnet
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: MindNet — a reverse knowledge base. The index is you. Coming soon.
|
|
5
|
+
Project-URL: Homepage, https://mindnet.tatoao.com
|
|
6
|
+
License: MIT
|
|
7
|
+
Keywords: mindnet,reverse-knowledge-base,reverse-rag
|
|
8
|
+
Requires-Python: >=3.8
|
|
9
|
+
Description-Content-Type: text/markdown
|
|
10
|
+
|
|
11
|
+
# MindNet
|
|
12
|
+
|
|
13
|
+
**MindNet — a reverse knowledge base. The index is you. Coming soon.**
|
|
14
|
+
|
|
15
|
+
A normal knowledge base is something you query. MindNet is the reverse: the
|
|
16
|
+
thing being queried is *you* — what you actually understand, where your edges
|
|
17
|
+
are, how you learn best. Any agent reads that before it answers, so it speaks
|
|
18
|
+
to your ken, not the docs'.
|
|
19
|
+
|
|
20
|
+
Website: https://mindnet.tatoao.com
|
|
21
|
+
|
|
22
|
+
_This is a name-reservation placeholder. The real package is on its way._
|
mindnet-0.0.1/README.md
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
# MindNet
|
|
2
|
+
|
|
3
|
+
**MindNet — a reverse knowledge base. The index is you. Coming soon.**
|
|
4
|
+
|
|
5
|
+
A normal knowledge base is something you query. MindNet is the reverse: the
|
|
6
|
+
thing being queried is *you* — what you actually understand, where your edges
|
|
7
|
+
are, how you learn best. Any agent reads that before it answers, so it speaks
|
|
8
|
+
to your ken, not the docs'.
|
|
9
|
+
|
|
10
|
+
Website: https://mindnet.tatoao.com
|
|
11
|
+
|
|
12
|
+
_This is a name-reservation placeholder. The real package is on its way._
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "mindnet"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "MindNet — a reverse knowledge base. The index is you. Coming soon."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.8"
|
|
11
|
+
license = { text = "MIT" }
|
|
12
|
+
keywords = ["mindnet", "reverse-knowledge-base", "reverse-rag"]
|
|
13
|
+
|
|
14
|
+
[project.urls]
|
|
15
|
+
Homepage = "https://mindnet.tatoao.com"
|
|
16
|
+
|
|
17
|
+
[tool.hatch.build.targets.wheel]
|
|
18
|
+
packages = ["src/mindnet"]
|