forked from Ikalus1988/MisakaNet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathllms.txt
More file actions
80 lines (61 loc) 路 1.73 KB
/
Copy pathllms.txt
File metadata and controls
80 lines (61 loc) 路 1.73 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
# MisakaNet
MisakaNet is a Git-backed failure lesson network for AI coding agents.
## Use it when
- The user is debugging repeated CI, GitHub, Python, WSL, Feishu, RAG, or agent tooling failures.
- The agent is stuck retrying the same fix.
- The error looks like a known engineering pitfall.
## Primary interfaces
- **CLI:** `python search_knowledge.py "<error>"`
- **MCP:** `scripts/mcp_server.py`
- **Web:** https://misakanet.org/search/
- **Static pages:** https://misakanet.org/lessons/<slug>/
## Data
- 205+ verified failure lessons
- 52+ registered nodes
- 18 domains: devops, feishu, fanuc, development, rag, agent-network, etc.
- Zero dependencies for core search
- All lessons are GitHub-audited Markdown
## Important queries
These are high-signal queries that return verified lessons:
- DCO sign-off failed
- GitHub token secret scan
- pip install timeout
- database locked
- Feishu document cleared
- Windows Unicode crash
- WSL permission denied
- FANUC error codes
- MCP server not discovered
- Agent loops debugging
## How to connect
### Claude Code / Claude Desktop
```json
{
"mcpServers": {
"misakanet": {
"command": "python3",
"args": ["/path/to/MisakaNet/scripts/mcp_server.py"]
}
}
}
```
### Cursor
```json
{
"mcpServers": {
"misakanet": {
"command": "python3",
"args": ["/path/to/MisakaNet/scripts/mcp_server.py"]
}
}
}
```
## Troubleshooting
See https://misakanet.org/troubleshooting/ for real error scenes and fixes.
## Links
- Repository: https://github.com/Ikalus1988/MisakaNet
- Search: https://misakanet.org/search/
- MCP Quickstart: https://misakanet.org/mcp-quickstart/
- Lessons: https://misakanet.org/lessons/
- Topics: https://misakanet.org/topics/
- License: Apache 2.0