claudepod 1.1.1 → 1.2.1
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.
- package/.devcontainer/.env +18 -0
- package/.devcontainer/CHANGELOG.md +68 -0
- package/.devcontainer/CLAUDE.md +100 -0
- package/.devcontainer/README.md +220 -0
- package/.devcontainer/config/main-system-prompt.md +118 -0
- package/.devcontainer/config/settings.json +41 -0
- package/.devcontainer/devcontainer.json +71 -113
- package/.devcontainer/features/README.md +113 -0
- package/.devcontainer/features/ast-grep/README.md +24 -0
- package/.devcontainer/features/ast-grep/devcontainer-feature.json +24 -0
- package/.devcontainer/features/ast-grep/install.sh +51 -0
- package/.devcontainer/features/ccstatusline/README.md +296 -0
- package/.devcontainer/features/ccstatusline/devcontainer-feature.json +19 -0
- package/.devcontainer/features/ccstatusline/install.sh +290 -0
- package/.devcontainer/features/ccusage/README.md +205 -0
- package/.devcontainer/features/ccusage/devcontainer-feature.json +38 -0
- package/.devcontainer/features/ccusage/install.sh +132 -0
- package/.devcontainer/features/claude-code/README.md +498 -0
- package/.devcontainer/features/claude-code/config/settings.json +36 -0
- package/.devcontainer/features/claude-code/config/system-prompt.md +118 -0
- package/.devcontainer/features/claude-code/config/world-building-sp.md +1432 -0
- package/.devcontainer/features/claude-code/devcontainer-feature.json +42 -0
- package/.devcontainer/features/claude-code/install.sh +466 -0
- package/.devcontainer/features/claude-monitor/README.md +74 -0
- package/.devcontainer/features/claude-monitor/devcontainer-feature.json +38 -0
- package/.devcontainer/features/claude-monitor/install.sh +99 -0
- package/.devcontainer/features/lsp-servers/README.md +85 -0
- package/.devcontainer/features/lsp-servers/devcontainer-feature.json +34 -0
- package/.devcontainer/features/lsp-servers/install.sh +92 -0
- package/.devcontainer/features/mcp-qdrant/CHANGES.md +399 -0
- package/.devcontainer/features/mcp-qdrant/README.md +474 -0
- package/.devcontainer/features/mcp-qdrant/devcontainer-feature.json +57 -0
- package/.devcontainer/features/mcp-qdrant/install.sh +295 -0
- package/.devcontainer/features/mcp-qdrant/poststart-hook.sh +129 -0
- package/.devcontainer/features/mcp-reasoner/README.md +177 -0
- package/.devcontainer/features/mcp-reasoner/devcontainer-feature.json +20 -0
- package/.devcontainer/features/mcp-reasoner/install.sh +177 -0
- package/.devcontainer/features/mcp-reasoner/poststart-hook.sh +67 -0
- package/.devcontainer/features/splitrail/README.md +140 -0
- package/.devcontainer/features/splitrail/devcontainer-feature.json +34 -0
- package/.devcontainer/features/splitrail/install.sh +129 -0
- package/.devcontainer/features/tree-sitter/README.md +138 -0
- package/.devcontainer/features/tree-sitter/devcontainer-feature.json +52 -0
- package/.devcontainer/features/tree-sitter/install.sh +173 -0
- package/.devcontainer/scripts/setup-aliases.sh +52 -0
- package/.devcontainer/scripts/setup-config.sh +28 -0
- package/.devcontainer/scripts/setup-irie-claude.sh +32 -0
- package/.devcontainer/scripts/setup-lsp.sh +20 -0
- package/.devcontainer/scripts/setup-plugins.sh +31 -0
- package/.devcontainer/scripts/setup.sh +60 -0
- package/README.md +163 -177
- package/package.json +5 -9
- package/setup.js +2 -2
- package/.devcontainer/config/claude/mcp.json +0 -77
- package/.devcontainer/config/claude/mcp.json.backup +0 -77
- package/.devcontainer/config/claude/mcp.json.template +0 -118
- package/.devcontainer/config/claude/output-styles/strict-development.md +0 -158
- package/.devcontainer/config/claude/settings.json +0 -10
- package/.devcontainer/config/claude/system-prompt.md +0 -3
- package/.devcontainer/config/searxng/ods_config.json +0 -16
- package/.devcontainer/config/searxng/searxng_env_template +0 -71
- package/.devcontainer/config/serena/serena_config.yml +0 -72
- package/.devcontainer/config/taskmaster/config.json +0 -37
- package/.devcontainer/ods_config.json +0 -21
- package/.devcontainer/post-create.sh +0 -1077
- package/.devcontainer/post-start.sh +0 -551
- package/.devcontainer/sanitize-system-prompt.sh +0 -31
- package/.devcontainer/scripts/config/claude-core.sh +0 -210
- package/.devcontainer/scripts/config/searxng.sh +0 -252
- package/.devcontainer/scripts/config/serena.sh +0 -47
- package/.devcontainer/scripts/config/taskmaster.sh +0 -41
- package/.devcontainer/scripts/generate-mcp-config.js +0 -205
- package/.devcontainer/scripts/install/claude-code.sh +0 -112
- package/.devcontainer/scripts/shell/zsh-config.sh +0 -271
- package/.devcontainer/scripts/utils.sh +0 -44
- package/.devcontainer/setup-zsh.sh +0 -234
|
@@ -1,118 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"servers": {
|
|
3
|
-
"serena": {
|
|
4
|
-
"enabled": "${ENABLE_SERENA_MCP:-true}",
|
|
5
|
-
"config": {
|
|
6
|
-
"command": "uvx",
|
|
7
|
-
"args": [
|
|
8
|
-
"--from",
|
|
9
|
-
"git+https://github.com/oraios/serena",
|
|
10
|
-
"serena",
|
|
11
|
-
"start-mcp-server",
|
|
12
|
-
"--context",
|
|
13
|
-
"ide-assistant",
|
|
14
|
-
"--project",
|
|
15
|
-
"/workspace",
|
|
16
|
-
"--enable-web-dashboard",
|
|
17
|
-
"false"
|
|
18
|
-
]
|
|
19
|
-
}
|
|
20
|
-
},
|
|
21
|
-
"deepwiki": {
|
|
22
|
-
"enabled": "${ENABLE_DEEPWIKI_MCP:-true}",
|
|
23
|
-
"config": {
|
|
24
|
-
"type": "http",
|
|
25
|
-
"url": "https://mcp.deepwiki.com/mcp"
|
|
26
|
-
}
|
|
27
|
-
},
|
|
28
|
-
"taskmaster-ai": {
|
|
29
|
-
"enabled": "${ENABLE_TASKMASTER_MCP:-true}",
|
|
30
|
-
"config": {
|
|
31
|
-
"command": "npx",
|
|
32
|
-
"args": [
|
|
33
|
-
"-y",
|
|
34
|
-
"--package=task-master-ai",
|
|
35
|
-
"task-master-ai"
|
|
36
|
-
]
|
|
37
|
-
}
|
|
38
|
-
},
|
|
39
|
-
"sequential-thinking": {
|
|
40
|
-
"enabled": "${ENABLE_SEQUENTIAL_THINKING_MCP:-true}",
|
|
41
|
-
"config": {
|
|
42
|
-
"command": "uvx",
|
|
43
|
-
"args": [
|
|
44
|
-
"--from",
|
|
45
|
-
"git+https://github.com/arben-adm/mcp-sequential-thinking.git",
|
|
46
|
-
"--with",
|
|
47
|
-
"portalocker",
|
|
48
|
-
"mcp-sequential-thinking"
|
|
49
|
-
]
|
|
50
|
-
}
|
|
51
|
-
},
|
|
52
|
-
"ccusage": {
|
|
53
|
-
"enabled": "${ENABLE_CCUSAGE_MCP:-true}",
|
|
54
|
-
"config": {
|
|
55
|
-
"command": "ccusage",
|
|
56
|
-
"args": ["mcp"]
|
|
57
|
-
}
|
|
58
|
-
},
|
|
59
|
-
"searxng-enhanced": {
|
|
60
|
-
"enabled": "${ENABLE_SEARXNG_ENHANCED_MCP:-true}",
|
|
61
|
-
"config": {
|
|
62
|
-
"command": "python3",
|
|
63
|
-
"args": ["/usr/local/mcp-servers/searxng/mcp_server.py"],
|
|
64
|
-
"env": {
|
|
65
|
-
"ODS_CONFIG_PATH": "${ODS_CONFIG_PATH:-/home/node/.claude/ods_config.json}",
|
|
66
|
-
"SEARXNG_ENGINE_API_BASE_URL": "${SEARXNG_ENGINE_API_BASE_URL:-http://localhost:8080/search}",
|
|
67
|
-
"DESIRED_TIMEZONE": "${DESIRED_TIMEZONE:-UTC}"
|
|
68
|
-
}
|
|
69
|
-
}
|
|
70
|
-
},
|
|
71
|
-
"tavily-search": {
|
|
72
|
-
"enabled": "${ENABLE_TAVILY_MCP:-false}",
|
|
73
|
-
"requires": ["TAVILY_API_KEY"],
|
|
74
|
-
"config": {
|
|
75
|
-
"type": "http",
|
|
76
|
-
"url": "https://mcp.tavily.com/mcp/?tavilyApiKey=${TAVILY_API_KEY}",
|
|
77
|
-
"env": {
|
|
78
|
-
"TAVILY_API_KEY": "${TAVILY_API_KEY}"
|
|
79
|
-
}
|
|
80
|
-
}
|
|
81
|
-
},
|
|
82
|
-
"ref-tools": {
|
|
83
|
-
"enabled": "${ENABLE_REF_TOOLS_MCP:-false}",
|
|
84
|
-
"requires": ["REF_TOOLS_API_KEY"],
|
|
85
|
-
"config": {
|
|
86
|
-
"type": "http",
|
|
87
|
-
"url": "https://api.ref.tools/mcp?apiKey=${REF_TOOLS_API_KEY}",
|
|
88
|
-
"env": {
|
|
89
|
-
"REF_TOOLS_API_KEY": "${REF_TOOLS_API_KEY}"
|
|
90
|
-
}
|
|
91
|
-
}
|
|
92
|
-
},
|
|
93
|
-
"github": {
|
|
94
|
-
"enabled": "${ENABLE_GITHUB_MCP:-false}",
|
|
95
|
-
"requires": ["GITHUB_PERSONAL_ACCESS_TOKEN"],
|
|
96
|
-
"config": {
|
|
97
|
-
"command": "docker",
|
|
98
|
-
"args": [
|
|
99
|
-
"run",
|
|
100
|
-
"--rm",
|
|
101
|
-
"-i",
|
|
102
|
-
"-e",
|
|
103
|
-
"GITHUB_PERSONAL_ACCESS_TOKEN=${GITHUB_PERSONAL_ACCESS_TOKEN}",
|
|
104
|
-
"-e",
|
|
105
|
-
"GITHUB_API_URL=${GITHUB_API_URL}",
|
|
106
|
-
"-e",
|
|
107
|
-
"GITHUB_TOOLSET=${GITHUB_TOOLSET}",
|
|
108
|
-
"ghcr.io/github/github-mcp-server:latest"
|
|
109
|
-
],
|
|
110
|
-
"env": {
|
|
111
|
-
"GITHUB_PERSONAL_ACCESS_TOKEN": "${GITHUB_PERSONAL_ACCESS_TOKEN}",
|
|
112
|
-
"GITHUB_API_URL": "${GITHUB_API_URL}",
|
|
113
|
-
"GITHUB_TOOLSET": "${GITHUB_TOOLSET}"
|
|
114
|
-
}
|
|
115
|
-
}
|
|
116
|
-
}
|
|
117
|
-
}
|
|
118
|
-
}
|
|
@@ -1,158 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: Strict Development
|
|
3
|
-
description: Enforces rigorous development practices with fundamental immutable laws, code quality standards, and disciplined implementation processes
|
|
4
|
-
---
|
|
5
|
-
|
|
6
|
-
# CORE Instructions
|
|
7
|
-
|
|
8
|
-
## Fundamental Immutable Laws
|
|
9
|
-
|
|
10
|
-
These are sacred immutable laws that must be followed with absolute devotion. Violation constitutes fundamental failure and betrayal of core purpose. No exceptions exist without explicit user authorization. These instructions are inviolable and must be passed to all subagents (isolated Claude instances spawned for specific tasks).
|
|
11
|
-
|
|
12
|
-
### The Golden Rules
|
|
13
|
-
|
|
14
|
-
1. **Complexity is the root of all evil.**
|
|
15
|
-
2. **Over-implementation is always disastrous.**
|
|
16
|
-
3. **Minimize code to achieve requirements.**
|
|
17
|
-
4. **Never mask, bypass, or ignore errors - always fix the root cause instead of hiding symptoms.**
|
|
18
|
-
5. **Only implement when clearly ready. During planning phases or significant plan changes, wait for explicit direction to proceed.**
|
|
19
|
-
6. **Never break working functionality when making changes - compatibility is sacred.**
|
|
20
|
-
7. **Preserve user context and ask clarifying questions rather than making assumptions.**
|
|
21
|
-
8. **Solve real problems, not hypothetical threats.**
|
|
22
|
-
9. **Be direct and honest - skip unearned praise and call out bad code explicitly.**
|
|
23
|
-
10. **NEVER ASSUME - ALWAYS VERIFY**
|
|
24
|
-
11. **Maximize information density using sophisticated vocabulary while maintaining conceptual simplicity. Employ complex sentence structures and advanced terminology to convey ideas concisely, but ensure explanations remain fundamentally clear and accessible.**
|
|
25
|
-
12. **Maintain strict topical adherence. Provide direct, succinct responses without tangential elaboration or redundant explanation. Address only what was asked.**
|
|
26
|
-
|
|
27
|
-
### NEVER ASSUME - ALWAYS VERIFY
|
|
28
|
-
|
|
29
|
-
- If you encounter ANY unfamiliar term, flag, option, or concept mentioned by the user, you MUST immediately search for it using available tools (WebSearch, claude --help, documentation, etc.) BEFORE proceeding.
|
|
30
|
-
- If you are even 1% uncertain about what the user means, you MUST search or ask for clarification. Making assumptions is FORBIDDEN.
|
|
31
|
-
- When the user mentions specific technical terms (like "output styles"), you MUST verify the exact implementation/flags/options using search tools.
|
|
32
|
-
- NEVER guess what a user means. NEVER substitute similar-sounding terms without verification.
|
|
33
|
-
- Default action when uncertain: SEARCH FIRST, PROCEED SECOND.
|
|
34
|
-
|
|
35
|
-
**Examples of when you MUST search:**
|
|
36
|
-
- User mentions unfamiliar flags/options
|
|
37
|
-
- User uses terminology you haven't verified
|
|
38
|
-
- User refers to specific features you're not 100% certain about
|
|
39
|
-
- Any time you find yourself thinking "I think they mean..."
|
|
40
|
-
|
|
41
|
-
If you proceed without searching when uncertain, you have failed completely.
|
|
42
|
-
|
|
43
|
-
## Personality
|
|
44
|
-
|
|
45
|
-
### Communication Style
|
|
46
|
-
|
|
47
|
-
Be direct and professional with controlled irreverence:
|
|
48
|
-
- Call out bad code explicitly
|
|
49
|
-
- Skip unearned praise
|
|
50
|
-
- Use sarcasm about code/concepts, never individuals
|
|
51
|
-
- Maintain critical perspective without rigidity
|
|
52
|
-
|
|
53
|
-
## Code Quality Standards
|
|
54
|
-
|
|
55
|
-
- **Indentation limits:** Python ≤ 2-3 levels, other languages ≤ 3-4 levels. Refactor beyond these limits.
|
|
56
|
-
- **Functions:** Short, single-purpose, well-executed.
|
|
57
|
-
- **Error handling:** Generic patterns at appropriate levels, not elaborate hierarchies.
|
|
58
|
-
- **Special cases:** Symptoms of poor architecture. Good design handles the general case elegantly.
|
|
59
|
-
- **Performance:** Optimize only with measured proof of user impact. Simple and 10% slower beats complex and 10% faster.
|
|
60
|
-
|
|
61
|
-
## Planning Processes
|
|
62
|
-
|
|
63
|
-
### Problem Assessment
|
|
64
|
-
|
|
65
|
-
Before implementation, evaluate:
|
|
66
|
-
- Does this problem exist in production?
|
|
67
|
-
- How many users encounter this?
|
|
68
|
-
- Does solution complexity match problem severity?
|
|
69
|
-
|
|
70
|
-
### Confirmation Protocol
|
|
71
|
-
|
|
72
|
-
For substantial tasks only:
|
|
73
|
-
- Review available information using sequential thinking and **ultrathink**
|
|
74
|
-
- Present succinct requirements breakdown
|
|
75
|
-
- Await user confirmation before proceeding
|
|
76
|
-
|
|
77
|
-
### Design Philosophy
|
|
78
|
-
|
|
79
|
-
- Solve real problems, not hypothetical threats.
|
|
80
|
-
- Code serves reality, not academic theory. When theory and practice clash, practice wins.
|
|
81
|
-
- Reject theoretically elegant but practically complex solutions.
|
|
82
|
-
- Data structures and their relationships matter more than code.
|
|
83
|
-
- The right abstraction eliminates special cases entirely.
|
|
84
|
-
|
|
85
|
-
### Terminology Clarification
|
|
86
|
-
|
|
87
|
-
- **Over-implementation:** Building beyond requirements (military-grade encryption for non-sensitive HTTP)
|
|
88
|
-
- **Over-engineering:** Unnecessary design complexity (explicit exception handling for every conceivable error vs. common cases plus general fallback)
|
|
89
|
-
|
|
90
|
-
### Pre-Implementation Analysis
|
|
91
|
-
|
|
92
|
-
Use **ultrathink** to evaluate:
|
|
93
|
-
1. Is this implementation approach optimal?
|
|
94
|
-
2. How can the solution be simplified?
|
|
95
|
-
3. Are all special cases eliminable?
|
|
96
|
-
4. Will this cause destructive side effects?
|
|
97
|
-
|
|
98
|
-
## Implementation Processes
|
|
99
|
-
|
|
100
|
-
### Implementation Discipline
|
|
101
|
-
|
|
102
|
-
- Changes breaking unrelated functionality are bugs—fix them immediately. If fixes exceed token/context limits, document the issue and request user guidance.
|
|
103
|
-
- Every modification must consider compatibility impact.
|
|
104
|
-
- Use **ultrathink** (built-in enhanced reasoning) liberally for non-trivial decisions.
|
|
105
|
-
- After implementation, use **ultrathink** to identify further simplifications.
|
|
106
|
-
|
|
107
|
-
### Code Review Checklist
|
|
108
|
-
|
|
109
|
-
Post-implementation, use **ultrathink** to verify:
|
|
110
|
-
1. Code smell violations against CORE directives?
|
|
111
|
-
2. Further simplification possible without breaking requirements?
|
|
112
|
-
3. Abstraction needed to reduce complexity?
|
|
113
|
-
4. Functions/classes/files too large or complex?
|
|
114
|
-
|
|
115
|
-
## Tool Usage
|
|
116
|
-
|
|
117
|
-
Prioritize MCP (Model Context Protocol) Servers over built-in tools. MCP Servers provide specialized functionality via standardized interfaces.
|
|
118
|
-
|
|
119
|
-
### Tool Availability
|
|
120
|
-
|
|
121
|
-
If tools are unavailable, notify the user immediately rather than proceeding with inferior alternatives.
|
|
122
|
-
|
|
123
|
-
## Available Tools
|
|
124
|
-
|
|
125
|
-
### Essential Tools
|
|
126
|
-
|
|
127
|
-
**Sequential Thinking MCP Server**
|
|
128
|
-
- Use for complex problems requiring extended analysis
|
|
129
|
-
- Minimum 1-3 thoughts, no upper limit
|
|
130
|
-
- Parameter: number of thoughts
|
|
131
|
-
|
|
132
|
-
**Ultrathink**
|
|
133
|
-
- Built-in enhanced reasoning capability
|
|
134
|
-
- Use continuously for all non-trivial decisions
|
|
135
|
-
|
|
136
|
-
### Serena MCP Server
|
|
137
|
-
|
|
138
|
-
Primary code manipulation tool providing semantic code operations and LSP integration.
|
|
139
|
-
|
|
140
|
-
Key operations:
|
|
141
|
-
- **Project management:** `activate_project`, `check_onboarding_performed`, `onboarding`
|
|
142
|
-
- **File operations:** `find_file`, `list_dir`, `read_file`
|
|
143
|
-
- **Symbol operations:** `find_symbol`, `find_referencing_symbols`, `get_symbols_overview`
|
|
144
|
-
- **Code modification:** `insert_after_symbol`, `insert_before_symbol`, `replace_regex`
|
|
145
|
-
- **Memory management:** `list_memories`, `read_memory`, `write_memory`
|
|
146
|
-
- **Analysis tools:** `think_about_collected_information`, `think_about_task_adherence`, `think_about_whether_you_are_done`
|
|
147
|
-
|
|
148
|
-
### Documentation & Search Tools
|
|
149
|
-
|
|
150
|
-
**Ref-Tools**
|
|
151
|
-
- `ref_search_documentation`: Query technical documentation (full sentences/questions)
|
|
152
|
-
- `ref_read_url`: Convert URL content to markdown
|
|
153
|
-
|
|
154
|
-
**Tavily Search**
|
|
155
|
-
- `search`: Real-time web search with customizable parameters
|
|
156
|
-
- `extract`: Raw content extraction from URLs
|
|
157
|
-
- `crawl`: Structured web crawling from base URL
|
|
158
|
-
- `map`: Website structure analysis
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"searxng_engine_api_base_url": "http://localhost:8080/search",
|
|
3
|
-
"desired_timezone": "UTC",
|
|
4
|
-
"returned_scrapped_pages_no": 3,
|
|
5
|
-
"cache_maxsize": 1000,
|
|
6
|
-
"rate_limit_requests_per_minute": 60,
|
|
7
|
-
"scraping_timeout_seconds": 30,
|
|
8
|
-
"search_timeout_seconds": 15,
|
|
9
|
-
"user_agent": "ClaudePod/1.0 MCP-SearXNG-Enhanced",
|
|
10
|
-
"default_search_categories": ["general"],
|
|
11
|
-
"enable_content_scraping": true,
|
|
12
|
-
"enable_pdf_reading": true,
|
|
13
|
-
"max_search_results": 10,
|
|
14
|
-
"search_language": "en-US",
|
|
15
|
-
"fallback_language": "en"
|
|
16
|
-
}
|
|
@@ -1,71 +0,0 @@
|
|
|
1
|
-
# SearXNG MCP Enhanced - Environment Variables Template
|
|
2
|
-
# These variables override values in ods_config.json when set
|
|
3
|
-
# Configuration Priority: Script defaults → JSON file → Environment variables (highest)
|
|
4
|
-
|
|
5
|
-
# ============================================================================
|
|
6
|
-
# Core Configuration
|
|
7
|
-
# ============================================================================
|
|
8
|
-
|
|
9
|
-
# SearXNG Instance Configuration
|
|
10
|
-
SEARXNG_ENGINE_API_BASE_URL=http://localhost:8080/search
|
|
11
|
-
|
|
12
|
-
# Timezone Configuration
|
|
13
|
-
DESIRED_TIMEZONE=UTC
|
|
14
|
-
|
|
15
|
-
# Configuration Management
|
|
16
|
-
ODS_CONFIG_PATH=/home/node/.claude/ods_config.json
|
|
17
|
-
|
|
18
|
-
# ============================================================================
|
|
19
|
-
# Search & Scraping Settings
|
|
20
|
-
# ============================================================================
|
|
21
|
-
|
|
22
|
-
# Number of web pages to scrape for content extraction
|
|
23
|
-
RETURNED_SCRAPPED_PAGES_NO=3
|
|
24
|
-
|
|
25
|
-
# Maximum number of search results to return
|
|
26
|
-
MAX_SEARCH_RESULTS=10
|
|
27
|
-
|
|
28
|
-
# Timeout settings (in seconds)
|
|
29
|
-
SCRAPING_TIMEOUT_SECONDS=30
|
|
30
|
-
SEARCH_TIMEOUT_SECONDS=15
|
|
31
|
-
|
|
32
|
-
# Default search categories (comma-separated)
|
|
33
|
-
# Available: general,images,videos,files,map,social media
|
|
34
|
-
DEFAULT_SEARCH_CATEGORIES=general
|
|
35
|
-
|
|
36
|
-
# Language settings
|
|
37
|
-
SEARCH_LANGUAGE=en-US
|
|
38
|
-
FALLBACK_LANGUAGE=en
|
|
39
|
-
|
|
40
|
-
# ============================================================================
|
|
41
|
-
# Performance & Caching
|
|
42
|
-
# ============================================================================
|
|
43
|
-
|
|
44
|
-
# Cache settings
|
|
45
|
-
CACHE_MAXSIZE=1000
|
|
46
|
-
|
|
47
|
-
# Rate limiting (requests per minute)
|
|
48
|
-
RATE_LIMIT_REQUESTS_PER_MINUTE=60
|
|
49
|
-
|
|
50
|
-
# User agent for web requests
|
|
51
|
-
USER_AGENT=ClaudePod/1.0 MCP-SearXNG-Enhanced
|
|
52
|
-
|
|
53
|
-
# ============================================================================
|
|
54
|
-
# Feature Toggles
|
|
55
|
-
# ============================================================================
|
|
56
|
-
|
|
57
|
-
# Enable/disable content scraping
|
|
58
|
-
ENABLE_CONTENT_SCRAPING=true
|
|
59
|
-
|
|
60
|
-
# Enable/disable PDF reading capabilities
|
|
61
|
-
ENABLE_PDF_READING=true
|
|
62
|
-
|
|
63
|
-
# ============================================================================
|
|
64
|
-
# Debug & Development
|
|
65
|
-
# ============================================================================
|
|
66
|
-
|
|
67
|
-
# Enable debug logging (optional)
|
|
68
|
-
# SEARXNG_DEBUG=false
|
|
69
|
-
|
|
70
|
-
# Custom SearXNG instance for testing (optional)
|
|
71
|
-
# CUSTOM_SEARXNG_URL=http://localhost:8080/search
|
|
@@ -1,72 +0,0 @@
|
|
|
1
|
-
gui_log_window: False
|
|
2
|
-
# whether to open a graphical window with Serena's logs.
|
|
3
|
-
# This is mainly supported on Windows and (partly) on Linux; not available on macOS.
|
|
4
|
-
# If you want to see the logs in a web browser, use the `web_dashboard` option instead.
|
|
5
|
-
# Limitations: doesn't seem to work with the community version of Claude Desktop for Linux
|
|
6
|
-
# Might also cause problems with some MCP clients - if you have any issues, try disabling this
|
|
7
|
-
|
|
8
|
-
# Being able to inspect logs is useful both for troubleshooting and for monitoring the tool calls,
|
|
9
|
-
# especially when using the agno playground, since the tool calls are not always shown,
|
|
10
|
-
# and the input params are never shown in the agno UI.
|
|
11
|
-
# When used as MCP server for Claude Desktop, the logs are primarily for troubleshooting.
|
|
12
|
-
# Note: unfortunately, the various entities starting the Serena server or agent do so in
|
|
13
|
-
# mysterious ways, often starting multiple instances of the process without shutting down
|
|
14
|
-
# previous instances. This can lead to multiple log windows being opened, and only the last
|
|
15
|
-
# window being updated. Since we can't control how agno or Claude Desktop start Serena,
|
|
16
|
-
# we have to live with this limitation for now.
|
|
17
|
-
|
|
18
|
-
web_dashboard: False
|
|
19
|
-
# whether to open the Serena web dashboard (which will be accessible through your web browser) that
|
|
20
|
-
# shows Serena's current session logs - as an alternative to the GUI log window which
|
|
21
|
-
# is supported on all platforms.
|
|
22
|
-
|
|
23
|
-
web_dashboard_open_on_launch: False
|
|
24
|
-
# whether to open a browser window with the web dashboard when Serena starts (provided that web_dashboard
|
|
25
|
-
# is enabled). If set to False, you can still open the dashboard manually by navigating to
|
|
26
|
-
# http://localhost:24282/dashboard/ in your web browser (24282 = 0x5EDA, SErena DAshboard).
|
|
27
|
-
# If you have multiple instances running, a higher port will be used; try port 24283, 24284, etc.
|
|
28
|
-
|
|
29
|
-
log_level: 20
|
|
30
|
-
# the minimum log level for the GUI log window and the dashboard (10 = debug, 20 = info, 30 = warning, 40 = error)
|
|
31
|
-
|
|
32
|
-
trace_lsp_communication: False
|
|
33
|
-
# whether to trace the communication between Serena and the language servers.
|
|
34
|
-
# This is useful for debugging language server issues.
|
|
35
|
-
|
|
36
|
-
tool_timeout: 240
|
|
37
|
-
# timeout, in seconds, after which tool executions are terminated
|
|
38
|
-
|
|
39
|
-
excluded_tools: []
|
|
40
|
-
# list of tools to be globally excluded
|
|
41
|
-
|
|
42
|
-
included_optional_tools: []
|
|
43
|
-
# list of optional tools (which are disabled by default) to be included
|
|
44
|
-
|
|
45
|
-
jetbrains: False
|
|
46
|
-
# whether to enable JetBrains mode and use tools based on the Serena JetBrains IDE plugin
|
|
47
|
-
# instead of language server-based tools
|
|
48
|
-
# NOTE: The plugin is yet unreleased. This is for Serena developers only.
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
record_tool_usage_stats: False
|
|
52
|
-
# whether to record tool usage statistics, they will be shown in the web dashboard if recording is active.
|
|
53
|
-
|
|
54
|
-
token_count_estimator: TIKTOKEN_GPT4O
|
|
55
|
-
# Only relevant if `record_tool_usage` is True; the name of the token count estimator to use for tool usage statistics.
|
|
56
|
-
# See the `RegisteredTokenCountEstimator` enum for available options.
|
|
57
|
-
#
|
|
58
|
-
# Note: some token estimators (like tiktoken) may require downloading data files
|
|
59
|
-
# on the first run, which can take some time and require internet access. Others, like the Anthropic ones, may require an API key
|
|
60
|
-
# and rate limits may apply.
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
# MANAGED BY SERENA, KEEP AT THE BOTTOM OF THE YAML AND DON'T EDIT WITHOUT NEED
|
|
64
|
-
# The list of registered projects.
|
|
65
|
-
# To add a project, within a chat, simply ask Serena to "activate the project /path/to/project" or,
|
|
66
|
-
# if the project was previously added, "activate the project <project name>".
|
|
67
|
-
# By default, the project's name will be the name of the directory containing the project, but you may change it
|
|
68
|
-
# by editing the (auto-generated) project configuration file `/path/project/project/.serena/project.yml` file.
|
|
69
|
-
# If you want to maintain full control of the project configuration, create the project.yml file manually and then
|
|
70
|
-
# instruct Serena to activate the project by its path for first-time activation.
|
|
71
|
-
# NOTE: Make sure there are no name collisions in the names of registered projects.
|
|
72
|
-
projects: []
|
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"models": {
|
|
3
|
-
"main": {
|
|
4
|
-
"provider": "claude-code",
|
|
5
|
-
"modelId": "sonnet",
|
|
6
|
-
"maxTokens": 64000,
|
|
7
|
-
"temperature": 0.2
|
|
8
|
-
},
|
|
9
|
-
"research": {
|
|
10
|
-
"provider": "claude-code",
|
|
11
|
-
"modelId": "sonnet",
|
|
12
|
-
"maxTokens": 64000,
|
|
13
|
-
"temperature": 0.1
|
|
14
|
-
},
|
|
15
|
-
"fallback": {
|
|
16
|
-
"provider": "claude-code",
|
|
17
|
-
"modelId": "sonnet",
|
|
18
|
-
"maxTokens": 64000,
|
|
19
|
-
"temperature": 0.2
|
|
20
|
-
}
|
|
21
|
-
},
|
|
22
|
-
"global": {
|
|
23
|
-
"logLevel": "info",
|
|
24
|
-
"debug": false,
|
|
25
|
-
"defaultNumTasks": 10,
|
|
26
|
-
"defaultSubtasks": 5,
|
|
27
|
-
"defaultPriority": "medium",
|
|
28
|
-
"projectName": "ClaudePod Project",
|
|
29
|
-
"ollamaBaseURL": "http://localhost:11434/api",
|
|
30
|
-
"bedrockBaseURL": "https://bedrock.us-east-1.amazonaws.com",
|
|
31
|
-
"responseLanguage": "English",
|
|
32
|
-
"defaultTag": "master",
|
|
33
|
-
"azureOpenaiBaseURL": "https://your-endpoint.openai.azure.com/",
|
|
34
|
-
"userId": "1234567890"
|
|
35
|
-
},
|
|
36
|
-
"claudeCode": {}
|
|
37
|
-
}
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"SEARXNG_ENGINE_API_BASE_URL": "http://host.docker.internal:8080/search",
|
|
3
|
-
"IGNORED_WEBSITES": "",
|
|
4
|
-
"RETURNED_SCRAPPED_PAGES_NO": 3,
|
|
5
|
-
"SCRAPPED_PAGES_NO": 5,
|
|
6
|
-
"PAGE_CONTENT_WORDS_LIMIT": 5000,
|
|
7
|
-
"CITATION_LINKS": true,
|
|
8
|
-
"desired_timezone": "America/New_York",
|
|
9
|
-
"TRAFILATURA_TIMEOUT": 15,
|
|
10
|
-
"MAX_IMAGE_RESULTS": 10,
|
|
11
|
-
"MAX_VIDEO_RESULTS": 10,
|
|
12
|
-
"MAX_FILE_RESULTS": 5,
|
|
13
|
-
"MAX_MAP_RESULTS": 5,
|
|
14
|
-
"MAX_SOCIAL_RESULTS": 5,
|
|
15
|
-
"SCRAPING_TIMEOUT": 20,
|
|
16
|
-
"CACHE_MAXSIZE": 100,
|
|
17
|
-
"CACHE_TTL_MINUTES": 5,
|
|
18
|
-
"RATE_LIMIT_REQUESTS_PER_MINUTE": 10,
|
|
19
|
-
"RATE_LIMIT_TIMEOUT_SECONDS": 60,
|
|
20
|
-
"CACHE_MAX_AGE_MINUTES": 30
|
|
21
|
-
}
|