skillmind 0.3.2__tar.gz → 0.4.0__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.
- {skillmind-0.3.2 → skillmind-0.4.0}/.gitignore +56 -52
- {skillmind-0.3.2 → skillmind-0.4.0}/CLAUDE.md +82 -82
- {skillmind-0.3.2 → skillmind-0.4.0}/LICENSE +21 -21
- {skillmind-0.3.2 → skillmind-0.4.0}/PKG-INFO +16 -5
- {skillmind-0.3.2 → skillmind-0.4.0}/README.md +434 -426
- {skillmind-0.3.2 → skillmind-0.4.0}/configs/default.yml +40 -40
- skillmind-0.4.0/deploy/railway-falkordb/README.md +83 -0
- {skillmind-0.3.2 → skillmind-0.4.0}/docs/assets/logo.svg +42 -42
- skillmind-0.4.0/docs/graphrag_falkordb_design.md +250 -0
- {skillmind-0.3.2 → skillmind-0.4.0}/pyproject.toml +4 -1
- {skillmind-0.3.2 → skillmind-0.4.0}/src/skillmind/__init__.py +3 -3
- {skillmind-0.3.2 → skillmind-0.4.0}/src/skillmind/cli/__init__.py +1 -1
- {skillmind-0.3.2 → skillmind-0.4.0}/src/skillmind/cli/main.py +584 -508
- {skillmind-0.3.2 → skillmind-0.4.0}/src/skillmind/config.py +166 -156
- {skillmind-0.3.2 → skillmind-0.4.0}/src/skillmind/context.py +218 -218
- {skillmind-0.3.2 → skillmind-0.4.0}/src/skillmind/embeddings.py +126 -126
- {skillmind-0.3.2 → skillmind-0.4.0}/src/skillmind/exporters/__init__.py +5 -5
- {skillmind-0.3.2 → skillmind-0.4.0}/src/skillmind/exporters/obsidian.py +660 -660
- {skillmind-0.3.2 → skillmind-0.4.0}/src/skillmind/listener.py +303 -303
- {skillmind-0.3.2 → skillmind-0.4.0}/src/skillmind/mcp/__init__.py +1 -1
- {skillmind-0.3.2 → skillmind-0.4.0}/src/skillmind/mcp/server.py +814 -771
- {skillmind-0.3.2 → skillmind-0.4.0}/src/skillmind/migration.py +263 -201
- {skillmind-0.3.2 → skillmind-0.4.0}/src/skillmind/models.py +112 -112
- {skillmind-0.3.2 → skillmind-0.4.0}/src/skillmind/review.py +186 -186
- {skillmind-0.3.2 → skillmind-0.4.0}/src/skillmind/sanitizer.py +233 -233
- {skillmind-0.3.2 → skillmind-0.4.0}/src/skillmind/setup.py +380 -380
- {skillmind-0.3.2 → skillmind-0.4.0}/src/skillmind/store/__init__.py +49 -45
- {skillmind-0.3.2 → skillmind-0.4.0}/src/skillmind/store/base.py +148 -148
- {skillmind-0.3.2 → skillmind-0.4.0}/src/skillmind/store/chroma_store.py +184 -184
- {skillmind-0.3.2 → skillmind-0.4.0}/src/skillmind/store/faiss_store.py +286 -286
- skillmind-0.4.0/src/skillmind/store/falkordb_store.py +603 -0
- {skillmind-0.3.2 → skillmind-0.4.0}/src/skillmind/store/pinecone_store.py +204 -204
- {skillmind-0.3.2 → skillmind-0.4.0}/src/skillmind/store/qdrant_store.py +256 -256
- {skillmind-0.3.2 → skillmind-0.4.0}/src/skillmind/store/supabase_store.py +267 -267
- {skillmind-0.3.2 → skillmind-0.4.0}/src/skillmind/trainer.py +292 -292
- {skillmind-0.3.2 → skillmind-0.4.0}/src/skillmind/video/__init__.py +1 -1
- {skillmind-0.3.2 → skillmind-0.4.0}/src/skillmind/video/screen_recorder.py +207 -207
- {skillmind-0.3.2 → skillmind-0.4.0}/src/skillmind/video/video_learner.py +454 -454
- {skillmind-0.3.2 → skillmind-0.4.0}/src/skillmind/video/youtube_learner.py +648 -632
- {skillmind-0.3.2 → skillmind-0.4.0}/tests/conftest.py +146 -146
- {skillmind-0.3.2 → skillmind-0.4.0}/tests/test_context.py +87 -87
- {skillmind-0.3.2 → skillmind-0.4.0}/tests/test_listener.py +92 -92
- {skillmind-0.3.2 → skillmind-0.4.0}/tests/test_migration.py +126 -126
- {skillmind-0.3.2 → skillmind-0.4.0}/tests/test_models.py +121 -121
- skillmind-0.4.0/tests/test_stores.py +471 -0
- {skillmind-0.3.2 → skillmind-0.4.0}/tests/test_trainer.py +147 -147
- skillmind-0.4.0/tests/test_youtube_progress.py +79 -0
- skillmind-0.3.2/.claude/settings.local.json +0 -27
- skillmind-0.3.2/.playwright-mcp/console-2026-04-08T08-53-35-219Z.log +0 -1
- skillmind-0.3.2/.playwright-mcp/page-2026-04-08T08-53-36-780Z.yml +0 -205
- skillmind-0.3.2/test_sanitizer_result.txt +0 -10
- skillmind-0.3.2/tests/test_sanitizer_quick.py +0 -22
- skillmind-0.3.2/tests/test_stores.py +0 -219
- {skillmind-0.3.2 → skillmind-0.4.0}/.github/FUNDING.yml +0 -0
- {skillmind-0.3.2 → skillmind-0.4.0}/docs/assets/favicon-192.png +0 -0
- {skillmind-0.3.2 → skillmind-0.4.0}/docs/assets/favicon.ico +0 -0
- {skillmind-0.3.2 → skillmind-0.4.0}/docs/assets/favicon.png +0 -0
- {skillmind-0.3.2 → skillmind-0.4.0}/docs/assets/logo.png +0 -0
- {skillmind-0.3.2 → skillmind-0.4.0}/tests/__init__.py +0 -0
|
@@ -1,52 +1,56 @@
|
|
|
1
|
-
# Python
|
|
2
|
-
__pycache__/
|
|
3
|
-
*.py[cod]
|
|
4
|
-
*$py.class
|
|
5
|
-
*.so
|
|
6
|
-
*.egg-info/
|
|
7
|
-
dist/
|
|
8
|
-
build/
|
|
9
|
-
.eggs/
|
|
10
|
-
|
|
11
|
-
# Virtual environments
|
|
12
|
-
venv/
|
|
13
|
-
.venv/
|
|
14
|
-
env/
|
|
15
|
-
|
|
16
|
-
# IDE
|
|
17
|
-
.idea/
|
|
18
|
-
.vscode/
|
|
19
|
-
*.swp
|
|
20
|
-
*.swo
|
|
21
|
-
|
|
22
|
-
# Environment / secrets
|
|
23
|
-
.env
|
|
24
|
-
.env.local
|
|
25
|
-
.env.*.local
|
|
26
|
-
|
|
27
|
-
# Runtime data
|
|
28
|
-
.skillmind/
|
|
29
|
-
*.db
|
|
30
|
-
*.sqlite3
|
|
31
|
-
|
|
32
|
-
# Test / coverage
|
|
33
|
-
.pytest_cache/
|
|
34
|
-
.coverage
|
|
35
|
-
htmlcov/
|
|
36
|
-
.mypy_cache/
|
|
37
|
-
|
|
38
|
-
# OS
|
|
39
|
-
.DS_Store
|
|
40
|
-
Thumbs.db
|
|
41
|
-
desktop.ini
|
|
42
|
-
|
|
43
|
-
# Recordings (runtime)
|
|
44
|
-
recordings/
|
|
45
|
-
|
|
46
|
-
# Obsidian vaults (user data, not code)
|
|
47
|
-
test_vault/
|
|
48
|
-
*_vault/
|
|
49
|
-
|
|
50
|
-
# Website (private repo)
|
|
51
|
-
website/
|
|
52
|
-
generate_pdfs.py
|
|
1
|
+
# Python
|
|
2
|
+
__pycache__/
|
|
3
|
+
*.py[cod]
|
|
4
|
+
*$py.class
|
|
5
|
+
*.so
|
|
6
|
+
*.egg-info/
|
|
7
|
+
dist/
|
|
8
|
+
build/
|
|
9
|
+
.eggs/
|
|
10
|
+
|
|
11
|
+
# Virtual environments
|
|
12
|
+
venv/
|
|
13
|
+
.venv/
|
|
14
|
+
env/
|
|
15
|
+
|
|
16
|
+
# IDE
|
|
17
|
+
.idea/
|
|
18
|
+
.vscode/
|
|
19
|
+
*.swp
|
|
20
|
+
*.swo
|
|
21
|
+
|
|
22
|
+
# Environment / secrets
|
|
23
|
+
.env
|
|
24
|
+
.env.local
|
|
25
|
+
.env.*.local
|
|
26
|
+
|
|
27
|
+
# Runtime data
|
|
28
|
+
.skillmind/
|
|
29
|
+
*.db
|
|
30
|
+
*.sqlite3
|
|
31
|
+
|
|
32
|
+
# Test / coverage
|
|
33
|
+
.pytest_cache/
|
|
34
|
+
.coverage
|
|
35
|
+
htmlcov/
|
|
36
|
+
.mypy_cache/
|
|
37
|
+
|
|
38
|
+
# OS
|
|
39
|
+
.DS_Store
|
|
40
|
+
Thumbs.db
|
|
41
|
+
desktop.ini
|
|
42
|
+
|
|
43
|
+
# Recordings (runtime)
|
|
44
|
+
recordings/
|
|
45
|
+
|
|
46
|
+
# Obsidian vaults (user data, not code)
|
|
47
|
+
test_vault/
|
|
48
|
+
*_vault/
|
|
49
|
+
|
|
50
|
+
# Website (private repo)
|
|
51
|
+
website/
|
|
52
|
+
generate_pdfs.py
|
|
53
|
+
|
|
54
|
+
# Deploy secrets — public repo: commit the generic guide, never the instance values
|
|
55
|
+
deploy/**/*.local.*
|
|
56
|
+
deploy/**/.railway
|
|
@@ -1,82 +1,82 @@
|
|
|
1
|
-
# SkillMind
|
|
2
|
-
|
|
3
|
-
**Active Skill Listener & Trainer** — structured memory layer for AI coding assistants.
|
|
4
|
-
|
|
5
|
-
## What is this?
|
|
6
|
-
|
|
7
|
-
SkillMind replaces flat markdown memory files with a vector-database-backed memory system that:
|
|
8
|
-
- **Listens** to git events, file changes, and conversations
|
|
9
|
-
- **Trains** by auto-classifying, deduplicating, and consolidating knowledge
|
|
10
|
-
- **Surfaces** only relevant context per conversation (not everything)
|
|
11
|
-
|
|
12
|
-
## Architecture
|
|
13
|
-
|
|
14
|
-
```
|
|
15
|
-
src/skillmind/
|
|
16
|
-
├── models.py # Memory, QueryFilter, QueryResult (Pydantic)
|
|
17
|
-
├── config.py # SkillMindConfig (YAML-based)
|
|
18
|
-
├── embeddings.py # EmbeddingEngine (sentence-transformers | openai)
|
|
19
|
-
├── trainer.py # Auto-classify, dedup, merge, consolidate
|
|
20
|
-
├── listener.py # GitListener, FileListener, ConversationListener
|
|
21
|
-
├── context.py # ContextGenerator — dynamic context for Claude Code
|
|
22
|
-
├── migration.py # Import existing Claude Code markdown memories
|
|
23
|
-
├── store/
|
|
24
|
-
│ ├── base.py # Abstract MemoryStore interface
|
|
25
|
-
│ ├── chroma_store.py # ChromaDB backend (default)
|
|
26
|
-
│ ├── pinecone_store.py # Pinecone backend
|
|
27
|
-
│ ├── supabase_store.py # Supabase/pgvector backend
|
|
28
|
-
│ ├── qdrant_store.py # Qdrant backend
|
|
29
|
-
│ └── faiss_store.py # FAISS + JSON backend
|
|
30
|
-
├── exporters/
|
|
31
|
-
│ ├── __init__.py
|
|
32
|
-
│ └── obsidian.py # Obsidian vault exporter (Karpathy wiki pattern)
|
|
33
|
-
├── mcp/
|
|
34
|
-
│ └── server.py # MCP server (25+ tools for Claude Code)
|
|
35
|
-
└── cli/
|
|
36
|
-
└── main.py # CLI (click-based)
|
|
37
|
-
```
|
|
38
|
-
|
|
39
|
-
## Key Commands
|
|
40
|
-
|
|
41
|
-
```bash
|
|
42
|
-
pip install -e ".[chroma]" # Install with Chroma backend
|
|
43
|
-
skillmind init --backend chroma # Initialize
|
|
44
|
-
skillmind import # Import existing Claude Code memories
|
|
45
|
-
skillmind remember "content" # Store memory
|
|
46
|
-
skillmind recall "query" # Semantic search
|
|
47
|
-
skillmind list # List all
|
|
48
|
-
skillmind consolidate # Cleanup
|
|
49
|
-
skillmind serve # Start MCP server
|
|
50
|
-
skillmind export ~/MyWiki # Export to Obsidian vault
|
|
51
|
-
skillmind sync # Incremental sync to vault
|
|
52
|
-
```
|
|
53
|
-
|
|
54
|
-
## Store Backends
|
|
55
|
-
|
|
56
|
-
All 5 implement the same `MemoryStore` interface (add, query, get, update, delete, list_all, count, clear):
|
|
57
|
-
|
|
58
|
-
| Backend | Best for | Requires |
|
|
59
|
-
|---------|----------|----------|
|
|
60
|
-
| **chroma** | Solo dev, local, default | `pip install chromadb` |
|
|
61
|
-
| **faiss** | Offline, air-gapped, fastest | `pip install faiss-cpu` |
|
|
62
|
-
| **qdrant** | Self-hosted or cloud, great filtering | Qdrant server |
|
|
63
|
-
| **pinecone** | Multi-device cloud sync | API key |
|
|
64
|
-
| **supabase** | SQL + vectors, team sharing | Supabase project |
|
|
65
|
-
|
|
66
|
-
## MCP Server Tools
|
|
67
|
-
|
|
68
|
-
10 tools exposed via FastMCP: `remember`, `recall`, `forget`, `update_memory`, `context`, `consolidate`, `memory_stats`, `list_memories`, `import_markdown_memories`.
|
|
69
|
-
|
|
70
|
-
## Memory Types
|
|
71
|
-
|
|
72
|
-
- **user** — role, preferences, expertise
|
|
73
|
-
- **feedback** — corrections, confirmed approaches
|
|
74
|
-
- **project** — deadlines, client context, status (auto-expires 90d)
|
|
75
|
-
- **reference** — external URLs, dashboards, wikis
|
|
76
|
-
- **skill** — patterns, workflows, how-tos
|
|
77
|
-
|
|
78
|
-
## Testing
|
|
79
|
-
|
|
80
|
-
```bash
|
|
81
|
-
pytest tests/ -v
|
|
82
|
-
```
|
|
1
|
+
# SkillMind
|
|
2
|
+
|
|
3
|
+
**Active Skill Listener & Trainer** — structured memory layer for AI coding assistants.
|
|
4
|
+
|
|
5
|
+
## What is this?
|
|
6
|
+
|
|
7
|
+
SkillMind replaces flat markdown memory files with a vector-database-backed memory system that:
|
|
8
|
+
- **Listens** to git events, file changes, and conversations
|
|
9
|
+
- **Trains** by auto-classifying, deduplicating, and consolidating knowledge
|
|
10
|
+
- **Surfaces** only relevant context per conversation (not everything)
|
|
11
|
+
|
|
12
|
+
## Architecture
|
|
13
|
+
|
|
14
|
+
```
|
|
15
|
+
src/skillmind/
|
|
16
|
+
├── models.py # Memory, QueryFilter, QueryResult (Pydantic)
|
|
17
|
+
├── config.py # SkillMindConfig (YAML-based)
|
|
18
|
+
├── embeddings.py # EmbeddingEngine (sentence-transformers | openai)
|
|
19
|
+
├── trainer.py # Auto-classify, dedup, merge, consolidate
|
|
20
|
+
├── listener.py # GitListener, FileListener, ConversationListener
|
|
21
|
+
├── context.py # ContextGenerator — dynamic context for Claude Code
|
|
22
|
+
├── migration.py # Import existing Claude Code markdown memories
|
|
23
|
+
├── store/
|
|
24
|
+
│ ├── base.py # Abstract MemoryStore interface
|
|
25
|
+
│ ├── chroma_store.py # ChromaDB backend (default)
|
|
26
|
+
│ ├── pinecone_store.py # Pinecone backend
|
|
27
|
+
│ ├── supabase_store.py # Supabase/pgvector backend
|
|
28
|
+
│ ├── qdrant_store.py # Qdrant backend
|
|
29
|
+
│ └── faiss_store.py # FAISS + JSON backend
|
|
30
|
+
├── exporters/
|
|
31
|
+
│ ├── __init__.py
|
|
32
|
+
│ └── obsidian.py # Obsidian vault exporter (Karpathy wiki pattern)
|
|
33
|
+
├── mcp/
|
|
34
|
+
│ └── server.py # MCP server (25+ tools for Claude Code)
|
|
35
|
+
└── cli/
|
|
36
|
+
└── main.py # CLI (click-based)
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
## Key Commands
|
|
40
|
+
|
|
41
|
+
```bash
|
|
42
|
+
pip install -e ".[chroma]" # Install with Chroma backend
|
|
43
|
+
skillmind init --backend chroma # Initialize
|
|
44
|
+
skillmind import # Import existing Claude Code memories
|
|
45
|
+
skillmind remember "content" # Store memory
|
|
46
|
+
skillmind recall "query" # Semantic search
|
|
47
|
+
skillmind list # List all
|
|
48
|
+
skillmind consolidate # Cleanup
|
|
49
|
+
skillmind serve # Start MCP server
|
|
50
|
+
skillmind export ~/MyWiki # Export to Obsidian vault
|
|
51
|
+
skillmind sync # Incremental sync to vault
|
|
52
|
+
```
|
|
53
|
+
|
|
54
|
+
## Store Backends
|
|
55
|
+
|
|
56
|
+
All 5 implement the same `MemoryStore` interface (add, query, get, update, delete, list_all, count, clear):
|
|
57
|
+
|
|
58
|
+
| Backend | Best for | Requires |
|
|
59
|
+
|---------|----------|----------|
|
|
60
|
+
| **chroma** | Solo dev, local, default | `pip install chromadb` |
|
|
61
|
+
| **faiss** | Offline, air-gapped, fastest | `pip install faiss-cpu` |
|
|
62
|
+
| **qdrant** | Self-hosted or cloud, great filtering | Qdrant server |
|
|
63
|
+
| **pinecone** | Multi-device cloud sync | API key |
|
|
64
|
+
| **supabase** | SQL + vectors, team sharing | Supabase project |
|
|
65
|
+
|
|
66
|
+
## MCP Server Tools
|
|
67
|
+
|
|
68
|
+
10 tools exposed via FastMCP: `remember`, `recall`, `forget`, `update_memory`, `context`, `consolidate`, `memory_stats`, `list_memories`, `import_markdown_memories`.
|
|
69
|
+
|
|
70
|
+
## Memory Types
|
|
71
|
+
|
|
72
|
+
- **user** — role, preferences, expertise
|
|
73
|
+
- **feedback** — corrections, confirmed approaches
|
|
74
|
+
- **project** — deadlines, client context, status (auto-expires 90d)
|
|
75
|
+
- **reference** — external URLs, dashboards, wikis
|
|
76
|
+
- **skill** — patterns, workflows, how-tos
|
|
77
|
+
|
|
78
|
+
## Testing
|
|
79
|
+
|
|
80
|
+
```bash
|
|
81
|
+
pytest tests/ -v
|
|
82
|
+
```
|
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
MIT License
|
|
2
|
-
|
|
3
|
-
Copyright (c) 2026 Antonio Blago
|
|
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
|
|
10
|
-
furnished 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.
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Antonio Blago
|
|
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
|
|
10
|
+
furnished 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.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: skillmind
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.4.0
|
|
4
4
|
Summary: Active Skill Listener & Trainer — structured memory layer for AI coding assistants
|
|
5
5
|
Project-URL: Homepage, https://skill-mind.com
|
|
6
6
|
Project-URL: Documentation, https://skill-mind.com/en/quickstart/
|
|
@@ -9,7 +9,7 @@ Project-URL: Issues, https://github.com/AntonioBlago/skillmind/issues
|
|
|
9
9
|
Author-email: Antonio Blago <info@antonioblago.com>
|
|
10
10
|
License-Expression: MIT
|
|
11
11
|
License-File: LICENSE
|
|
12
|
-
Keywords: ai-assistant,chroma,claude-code,faiss,mcp,memory,pinecone,qdrant,screen-recording,semantic-search,skill-learning,supabase,vector-database,youtube
|
|
12
|
+
Keywords: ai-assistant,chroma,claude-code,faiss,falkordb,graphrag,knowledge-graph,mcp,memory,pinecone,qdrant,screen-recording,semantic-search,skill-learning,supabase,vector-database,youtube
|
|
13
13
|
Classifier: Development Status :: 3 - Alpha
|
|
14
14
|
Classifier: Intended Audience :: Developers
|
|
15
15
|
Classifier: License :: OSI Approved :: MIT License
|
|
@@ -29,6 +29,7 @@ Requires-Dist: sentence-transformers>=2.2.0
|
|
|
29
29
|
Provides-Extra: all
|
|
30
30
|
Requires-Dist: chromadb>=0.4.0; extra == 'all'
|
|
31
31
|
Requires-Dist: faiss-cpu>=1.7; extra == 'all'
|
|
32
|
+
Requires-Dist: falkordb>=1.6; extra == 'all'
|
|
32
33
|
Requires-Dist: fastmcp>=3.2.0; extra == 'all'
|
|
33
34
|
Requires-Dist: mss>=9.0; extra == 'all'
|
|
34
35
|
Requires-Dist: opencv-python>=4.8; extra == 'all'
|
|
@@ -48,6 +49,8 @@ Requires-Dist: pytest-asyncio>=0.21; extra == 'dev'
|
|
|
48
49
|
Requires-Dist: pytest>=7.0; extra == 'dev'
|
|
49
50
|
Provides-Extra: faiss
|
|
50
51
|
Requires-Dist: faiss-cpu>=1.7; extra == 'faiss'
|
|
52
|
+
Provides-Extra: falkordb
|
|
53
|
+
Requires-Dist: falkordb>=1.6; extra == 'falkordb'
|
|
51
54
|
Provides-Extra: mcp
|
|
52
55
|
Requires-Dist: fastmcp>=3.2.0; extra == 'mcp'
|
|
53
56
|
Provides-Extra: pinecone
|
|
@@ -455,15 +458,15 @@ SkillMind works great alongside other MCP servers:
|
|
|
455
458
|
|
|
456
459
|
| MCP Server | What it adds | Install |
|
|
457
460
|
|---|---|---|
|
|
458
|
-
| **[Visibly AI MCP](https://
|
|
461
|
+
| **[Visibly AI MCP](https://www.antonioblago.com/de/entwickler/mcp)** | SEO skills: keyword research, backlinks, site audit, GSC queries, on-page analysis | Hosted MCP — no install; add HTTP config to `settings.json` |
|
|
459
462
|
| **[Notion MCP](https://mcp.notion.com/)** | Read/write Notion pages, databases, todos | Built-in |
|
|
460
463
|
| **[Playwright MCP](https://github.com/anthropics/mcp-playwright)** | Browser automation, screenshots, web scraping | Built-in |
|
|
461
464
|
|
|
462
465
|
### Example: SEO Memory + Skills
|
|
463
466
|
|
|
464
467
|
```bash
|
|
465
|
-
#
|
|
466
|
-
pip install skillmind[pinecone,mcp]
|
|
468
|
+
# SkillMind installs locally; Visibly AI is a hosted MCP (no install needed)
|
|
469
|
+
pip install skillmind[pinecone,mcp]
|
|
467
470
|
```
|
|
468
471
|
|
|
469
472
|
```json
|
|
@@ -485,6 +488,14 @@ pip install skillmind[pinecone,mcp] visiblyai-mcp-server
|
|
|
485
488
|
|
|
486
489
|
SkillMind remembers your SEO preferences, client keywords, and audit findings. Visibly AI provides the live SEO data. Together: persistent SEO intelligence.
|
|
487
490
|
|
|
491
|
+
## Used by
|
|
492
|
+
|
|
493
|
+
### [peec-ai-skills](https://github.com/AntonioBlago/peec-ai-skills)
|
|
494
|
+
|
|
495
|
+
A Claude Code skill repository for **Peec AI** (brand-visibility tracking in LLM search) that uses SkillMind as its **cross-project memory layer**. The `skillmind-learner` skill writes causal, evidence-backed patterns to SkillMind after a Peec AI growth-loop outcome is measured, and recalls matching patterns as priors for the growth-agent orchestrator on the next run — so lessons learned on project A inform decisions on project B.
|
|
496
|
+
|
|
497
|
+
See [`skills/skillmind-learner/SKILL.md`](https://github.com/AntonioBlago/peec-ai-skills/blob/main/skills/skillmind-learner/SKILL.md) for the full integration contract (read vs. write mode, required tags, pattern schema, handoff points from the other 5 Peec skills).
|
|
498
|
+
|
|
488
499
|
## Contributing
|
|
489
500
|
|
|
490
501
|
PRs welcome! See [CONTRIBUTING.md](CONTRIBUTING.md).
|