Infrastructure Administrator Configuration on linuxserver.lan
~/.claude/ # USER LEVEL (personal preferences) ├── config.toml # Trust levels, model preferences ├── settings.json # Always-on features, global permissions ├── commands/ # User slash commands (6 commands) │ ├── cmemory.md # /cmemory - Save to OpenMemory │ ├── cdebug.md # /cdebug - Enable debug mode │ └── ... ├── skills/ # User skills (7 skills) │ ├── architecture-diagram-creator/ │ ├── gitlab-integration/ │ ├── naming-validator/ │ ├── secrets-security/ │ ├── skill-creator/ │ └── ... ├── agents/ # User agents (1 agent) │ └── pm.md # Project Manager agent └── session-env/ # Per-session environment snapshots ~/projects/.claude/ # PROJECT LEVEL (infrastructure-wide) ├── settings.local.json # 174 pre-approved permissions ├── init.md # Bootstrap file (loads memoryfiles.md) ├── commands/ # Project slash commands (4 commands) │ ├── cexit.md # /cexit - Session exit summary │ ├── cproject-health.md # /cproject-health │ └── ... ├── skills/ # Infrastructure skills (8 skills) │ ├── keycloak-setup/ │ ├── traefik-setup/ │ ├── postgres-integration/ │ ├── service-deployment/ │ ├── troubleshooting/ │ └── ... ├── agents/ # Infrastructure agents (4 agents) │ ├── architect.md # System architecture specialist │ ├── developer.md # Implementation specialist │ ├── security.md # Security & network specialist │ └── qa.md # Quality assurance specialist └── docs/ # Agent documentation
User-level preferences and trust settings
| Setting | Value |
|---|---|
| model | gpt-5-codex |
| /home/administrator | |
| /home/administrator/projects |
Global settings and features
| Setting | Value |
|---|---|
| alwaysThinkingEnabled | |
| enableAllProjectMcpServers | |
| permissions.deny | Read(/projects/administrator/projects/claude) |
174 pre-approved tool permissions for autonomous operation
Categories: Docker operations, Git workflows, File operations, Network diagnostics, Database access, System administration, MCP tools, Skills, Slash commands
| Server | Tools | Purpose |
|---|---|---|
| postgres | 9 | Database queries, schema info, table stats |
| filesystem | 9 | File operations within /workspace |
| arangodb | 7 | Document/graph database for AI memory |
| memory | 9 | Knowledge graph storage |
| minio | 9 | S3-compatible object storage |
| ib | 10 | Interactive Brokers market data |
| playwright | 6 | Browser automation, screenshots |
| n8n | 6 | Workflow automation |
| timescaledb | 6 | Time-series database |
SESSION START
|
v
+---------------------------+
| Layer 0: AI Model | Claude Opus 4.5 base knowledge
+---------------------------+
|
v
+---------------------------+
| Layer 1: User Context | ~/.claude/config.toml
| | ~/.claude/settings.json
| | User commands, skills, agents
+---------------------------+
|
v
+---------------------------+
| Layer 2: Project Context | ~/projects/.claude/init.md
| | → @memoryfiles.md (9 AINotes files)
| | → CLAUDE.md per-project files
| | Project commands, skills, agents
+---------------------------+
|
v
+---------------------------+
| Layer 3: Permissions | settings.local.json
| | 174 pre-approved operations
| | Autonomous operation enabled
+---------------------------+
|
v
+---------------------------+
| Layer 4: Runtime Tools | MCP code-executor
| | 71 tools across 9 servers
| | Skills loaded on-demand
+---------------------------+
| Purpose | Path |
|---|---|
| User config | ~/.claude/config.toml |
| User settings | ~/.claude/settings.json |
| Project permissions | ~/projects/.claude/settings.local.json |
| Bootstrap file | ~/projects/.claude/init.md |
| Session history | ~/.claude/history.jsonl |
| MCP config | claude mcp list |
| Project CLAUDE.md | ~/projects/CLAUDE.md |
| AINotes (context) | ~/projects/AINotes/*.md |