Initial commit: Multi-repository role-based knowledge graphs

This commit is contained in:
Kimi Claw
2026-02-19 04:11:57 +08:00
commit 3720b9e325
19 changed files with 1218 additions and 0 deletions
+42
View File
@@ -0,0 +1,42 @@
# System Operator Knowledge Graph
## Role: System Operator
Specialized knowledge for system administration and operations.
## Thesaurus
- **Source**: `thesaurus.json`
- **Concepts**: Logs, Config, Service, Network, Security
## Key Areas
### Logging
- System logs
- Application logs
- Log analysis
### Configuration
- System config files
- Service configuration
- Environment settings
### Services
- Systemd services
- Daemon management
- Process control
### Network
- IP configuration
- DNS settings
- Firewall rules
### Security
- Audit logs
- Permissions
- Authentication
## Sources
- Logs: `/var/log/`
- Config: `/etc/`
+33
View File
@@ -0,0 +1,33 @@
{
"name": "System Operator",
"data": {
"log": { "id": 1, "nterm": "log" },
"logs": { "id": 1, "nterm": "log" },
"logging": { "id": 1, "nterm": "log" },
"syslog": { "id": 1, "nterm": "log" },
"journal": { "id": 1, "nterm": "log" },
"config": { "id": 2, "nterm": "config" },
"configuration": { "id": 2, "nterm": "config" },
"conf": { "id": 2, "nterm": "config" },
"cfg": { "id": 2, "nterm": "config" },
"settings": { "id": 2, "nterm": "config" },
"service": { "id": 3, "nterm": "service" },
"daemon": { "id": 3, "nterm": "service" },
"systemd": { "id": 3, "nterm": "service" },
"process": { "id": 3, "nterm": "service" },
"network": { "id": 4, "nterm": "network" },
"net": { "id": 4, "nterm": "network" },
"ip": { "id": 4, "nterm": "network" },
"dns": { "id": 4, "nterm": "network" },
"firewall": { "id": 4, "nterm": "network" },
"security": { "id": 5, "nterm": "security" },
"secure": { "id": 5, "nterm": "security" },
"audit": { "id": 5, "nterm": "security" },
"permission": { "id": 5, "nterm": "security" },
"auth": { "id": 5, "nterm": "security" }
}
}