fenix-mcp 1.11.1__tar.gz → 1.12.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.
- {fenix_mcp-1.11.1 → fenix_mcp-1.12.0}/PKG-INFO +1 -1
- {fenix_mcp-1.11.1 → fenix_mcp-1.12.0}/fenix_mcp/__init__.py +1 -1
- {fenix_mcp-1.11.1 → fenix_mcp-1.12.0}/fenix_mcp/application/tools/initialize.py +19 -0
- {fenix_mcp-1.11.1 → fenix_mcp-1.12.0}/fenix_mcp/application/tools/intelligence.py +7 -1
- {fenix_mcp-1.11.1 → fenix_mcp-1.12.0}/fenix_mcp.egg-info/PKG-INFO +1 -1
- {fenix_mcp-1.11.1 → fenix_mcp-1.12.0}/README.md +0 -0
- {fenix_mcp-1.11.1 → fenix_mcp-1.12.0}/fenix_mcp/application/presenters.py +0 -0
- {fenix_mcp-1.11.1 → fenix_mcp-1.12.0}/fenix_mcp/application/tool_base.py +0 -0
- {fenix_mcp-1.11.1 → fenix_mcp-1.12.0}/fenix_mcp/application/tool_registry.py +0 -0
- {fenix_mcp-1.11.1 → fenix_mcp-1.12.0}/fenix_mcp/application/tools/__init__.py +0 -0
- {fenix_mcp-1.11.1 → fenix_mcp-1.12.0}/fenix_mcp/application/tools/health.py +0 -0
- {fenix_mcp-1.11.1 → fenix_mcp-1.12.0}/fenix_mcp/application/tools/knowledge.py +0 -0
- {fenix_mcp-1.11.1 → fenix_mcp-1.12.0}/fenix_mcp/application/tools/productivity.py +0 -0
- {fenix_mcp-1.11.1 → fenix_mcp-1.12.0}/fenix_mcp/application/tools/user_config.py +0 -0
- {fenix_mcp-1.11.1 → fenix_mcp-1.12.0}/fenix_mcp/domain/initialization.py +0 -0
- {fenix_mcp-1.11.1 → fenix_mcp-1.12.0}/fenix_mcp/domain/intelligence.py +0 -0
- {fenix_mcp-1.11.1 → fenix_mcp-1.12.0}/fenix_mcp/domain/knowledge.py +0 -0
- {fenix_mcp-1.11.1 → fenix_mcp-1.12.0}/fenix_mcp/domain/productivity.py +0 -0
- {fenix_mcp-1.11.1 → fenix_mcp-1.12.0}/fenix_mcp/domain/user_config.py +0 -0
- {fenix_mcp-1.11.1 → fenix_mcp-1.12.0}/fenix_mcp/infrastructure/config.py +0 -0
- {fenix_mcp-1.11.1 → fenix_mcp-1.12.0}/fenix_mcp/infrastructure/context.py +0 -0
- {fenix_mcp-1.11.1 → fenix_mcp-1.12.0}/fenix_mcp/infrastructure/fenix_api/client.py +0 -0
- {fenix_mcp-1.11.1 → fenix_mcp-1.12.0}/fenix_mcp/infrastructure/http_client.py +0 -0
- {fenix_mcp-1.11.1 → fenix_mcp-1.12.0}/fenix_mcp/infrastructure/logging.py +0 -0
- {fenix_mcp-1.11.1 → fenix_mcp-1.12.0}/fenix_mcp/interface/mcp_server.py +0 -0
- {fenix_mcp-1.11.1 → fenix_mcp-1.12.0}/fenix_mcp/interface/transports.py +0 -0
- {fenix_mcp-1.11.1 → fenix_mcp-1.12.0}/fenix_mcp/main.py +0 -0
- {fenix_mcp-1.11.1 → fenix_mcp-1.12.0}/fenix_mcp.egg-info/SOURCES.txt +0 -0
- {fenix_mcp-1.11.1 → fenix_mcp-1.12.0}/fenix_mcp.egg-info/dependency_links.txt +0 -0
- {fenix_mcp-1.11.1 → fenix_mcp-1.12.0}/fenix_mcp.egg-info/entry_points.txt +0 -0
- {fenix_mcp-1.11.1 → fenix_mcp-1.12.0}/fenix_mcp.egg-info/requires.txt +0 -0
- {fenix_mcp-1.11.1 → fenix_mcp-1.12.0}/fenix_mcp.egg-info/top_level.txt +0 -0
- {fenix_mcp-1.11.1 → fenix_mcp-1.12.0}/pyproject.toml +0 -0
- {fenix_mcp-1.11.1 → fenix_mcp-1.12.0}/setup.cfg +0 -0
|
@@ -124,6 +124,25 @@ class InitializeTool(Tool):
|
|
|
124
124
|
]
|
|
125
125
|
)
|
|
126
126
|
|
|
127
|
+
# Add memory usage instructions
|
|
128
|
+
message_lines.extend(
|
|
129
|
+
[
|
|
130
|
+
"",
|
|
131
|
+
"🧠 **Memory Usage Instructions**",
|
|
132
|
+
"",
|
|
133
|
+
"To provide continuity across sessions, use the `intelligence` tool:",
|
|
134
|
+
"",
|
|
135
|
+
'1. **At conversation START**: Call `intelligence(action="memory_query", query="<relevant_topic>")` to retrieve context from previous sessions',
|
|
136
|
+
'2. **When learning important info**: Call `intelligence(action="memory_smart_create", ...)` to save:',
|
|
137
|
+
" - User preferences and decisions",
|
|
138
|
+
" - Project context and architecture choices",
|
|
139
|
+
" - Problems solved and solutions found",
|
|
140
|
+
" - Technical learnings and patterns",
|
|
141
|
+
"",
|
|
142
|
+
"This prevents users from repeating themselves and enables personalized assistance.",
|
|
143
|
+
]
|
|
144
|
+
)
|
|
145
|
+
|
|
127
146
|
return text("\n".join(message_lines))
|
|
128
147
|
|
|
129
148
|
async def _handle_setup(self, payload: InitializeRequest):
|
|
@@ -172,7 +172,13 @@ class IntelligenceRequest(ToolRequest):
|
|
|
172
172
|
|
|
173
173
|
class IntelligenceTool(Tool):
|
|
174
174
|
name = "intelligence"
|
|
175
|
-
description =
|
|
175
|
+
description = (
|
|
176
|
+
"Fenix persistent memory system for cross-session continuity. "
|
|
177
|
+
"RECOMMENDED USAGE: "
|
|
178
|
+
"(1) Call memory_query at the START of conversations to retrieve relevant context from previous sessions. "
|
|
179
|
+
"(2) Call memory_smart_create to save important information, decisions, user preferences, and learnings. "
|
|
180
|
+
"This enables personalized responses and prevents users from repeating themselves."
|
|
181
|
+
)
|
|
176
182
|
request_model = IntelligenceRequest
|
|
177
183
|
|
|
178
184
|
def __init__(self, context: AppContext):
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|