USER (hermes, kimi-k2.6)
[Assistant Rules - You MUST follow these instructions]
[Available Skills]
The following skills are available. When you need detailed instructions for a specific skill,
you can request it by outputting: [LOAD_SKILL: skill-name]
- aionui-skills: Access the AionUI Skills registry — discover and download AI agent skills. Use when you need to find a reusable skill for a task or manage your agent credentials on the AionUI Skills platform.
- cron: Scheduled task management - create, query, update scheduled tasks to automatically execute operations at specified times.
- officecli: Create, analyze, proofread, and modify Office documents (.docx, .xlsx, .pptx) using the officecli CLI tool. Use when the user wants to create, inspect, check formatting, find issues, add charts, or modify Office documents.
- skill-creator: Guide for creating effective skills. This skill should be used when users want to create a new skill (or update an existing skill) that extends Claude's capabilities with specialized knowledge, workflows, or tool integrations.
[Skills Location]
Skills are stored in three locations:
- Builtin skills (auto-enabled): /home/ubuntu/.config/AionUi/config/builtin-skills/_builtin/{skill-name}/SKILL.md
- Bundled skills: /home/ubuntu/.config/AionUi/config/builtin-skills/{skill-name}/SKILL.md
- User custom skills: /home/ubuntu/.config/AionUi/config/skills/{skill-name}/SKILL.md
Each skill has a SKILL.md file containing detailed instructions.
To use a skill, read its SKILL.md file when needed.
For example:
- Builtin "cron" skill: /home/ubuntu/.config/AionUi/config/builtin-skills/_builtin/cron/SKILL.md
- Bundled "pptx" skill: /home/ubuntu/.config/AionUi/config/builtin-skills/pptx/SKILL.md
[User Request]
hi
2026-05-26T22:48:41
USER (hermes, kimi-k2.6)
[Assistant Rules - You MUST follow these instructions]
[Available Skills]
The following skills are available. When you need detailed instructions for a specific skill,
you can request it by outputting: [LOAD_SKILL: skill-name]
- aionui-skills: Access the AionUI Skills registry — discover and download AI agent skills. Use when you need to find a reusable skill for a task or manage your agent credentials on the AionUI Skills platform.
- cron: Scheduled task management - create, query, update scheduled tasks to automatically execute operations at specified times.
- officecli: Create, analyze, proofread, and modify Office documents (.docx, .xlsx, .pptx) using the officecli CLI tool. Use when the user wants to create, inspect, check formatting, find issues, add charts, or modify Office documents.
- skill-creator: Guide for creating effective skills. This skill should be used when users want to create a new skill (or update an existing skill) that extends Claude's capabilities with specialized knowledge, workflows, or tool integrations.
[Skills Location]
Skills are stored in three locations:
- Builtin skills (auto-enabled): /home/ubuntu/.config/AionUi/config/builtin-skills/_builtin/{skill-name}/SKILL.md
- Bundled skills: /home/ubuntu/.config/AionUi/config/builtin-skills/{skill-name}/SKILL.md
- User custom skills: /home/ubuntu/.config/AionUi/config/skills/{skill-name}/SKILL.md
Each skill has a SKILL.md file containing detailed instructions.
To use a skill, read its SKILL.md file when needed.
For example:
- Builtin "cron" skill: /home/ubuntu/.config/AionUi/config/builtin-skills/_builtin/cron/SKILL.md
- Bundled "pptx" skill: /home/ubuntu/.config/AionUi/config/builtin-skills/pptx/SKILL.md
[User Request]
# SYSTEM INSTRUCTION: VPS CENTRALIZED MULTI-AGENT MEMORY PROTOCOL
## 1. ENVIRONMENTAL AWARENESS
You are running on a shared Ubuntu VPS hosting active trading bots, chart
interfaces, and strategy services.
There are multiple agents operating in this environment. To prevent silos,
maintain architectural consistency, and share knowledge, all agents write to
and read from a centralized multi-agent memory bridge.
* **Database Path:** `/home/ubuntu/.gemini/chat_archive.db`
* **Master Memory Utility Script:** `/home/ubuntu/scripts/vps_agent_memory.
py` (Executable Python script & CLI tool)
---
## 2. THE RECON PROTOCOL (READ PAST MEMORIES FIRST)
Before starting any new task, investigating a bug, or running commands, you
must check if another agent has already solved, researched, or worked on this
topic.
* **Action:** Run a semantic search query using the centralized TF-IDF
search engine.
* **Command:**
```bash
/home/ubuntu/scripts/vps_agent_memory.py --search "<keywords or topic
name>"
```
* **Rule:** If a relevant past session or milestone is found, review the
logged details, filenames, and line numbers to avoid duplicate work or
regression.
---
## 3. THE LOGGING PROTOCOL (WRITE ACTIVE CONVERSATIONS)
You must record every major turn of this conversation into the centralized
database to keep the memory bridge fresh.
### Option A: Via Python (If you run inside Python script)
```python
import sys
sys.path.insert(0, '/home/ubuntu/scripts')
from vps_agent_memory import log_message
# Log User Query:
log_message(session_id="<session_uuid>", role="user",
content="<user_query_text>", agent="<your_agent_name>")
# Log your own response:
log_message(session_id="<session_uuid>", role="assistant",
content="<your_response_text>", agent="<your_agent_name>")
### Option B: Via Terminal CLI (If you run inside bash or use subprocesses)
# Log User Turn:
/home/ubuntu/scripts/vps_agent_memory.py --log \
--session-id "<session_uuid>" \
--role "user" \
--content "<user_query_text>" \
--agent "<your_agent_name>"
# Log Assistant Turn:
/home/ubuntu/scripts/vps_agent_memory.py --log \
--session-id "<session_uuid>" \
--role "assistant" \
--content "<your_response_text>" \
--agent "<your_agent_name>"
──────
## 4. THE MILESTONE PROTOCOL (RECORD FINAL RESOLUTIONS)
If you successfully solve a critical issue, deploy a new feature, run a
database sync, patch a bug, or configure a new service:
• Action: You must log this permanently as an Operational Milestone so it is
indexed instantly for semantic searches.
• Command:
/home/ubuntu/scripts/vps_agent_memory.py --add-milestone "<Descriptive
Action Name>" \
--category "<Category: Bug Fix / Auth / Chart App / Network /
Operations>" \
--details "<Specify exactly what files, lines, and directories were
modified and why>"
──────
## 5. VPS OPERATIONAL RULES
• Timeout Safety: NEVER run broad, recursive grep searches or file scans
directly on /home/ubuntu . The home directory contains massive binary folders,
virtual environments ( venv ), and caches that will trigger execution timeouts
and crash your engine. Always target specific subdirectories (e.g.,
/home/ubuntu/scripts , /home/ubuntu/bots ) or use targeted file paths.
• Database Lock Safety: SQLite is used. Ensure you close all cursors and
connections quickly to prevent database lockups.
2026-05-26T22:48:41
ASSISTANT (hermes, kimi-k2.6)
Protocol acknowledged. Recon complete — found 2 prior milestones on Flattrade auth and CORS config, no existing solution for fully automated broker token refresh.
I'm synced with the memory bridge (`/home/ubuntu/scripts/vps_agent_memory.py`) and will log turns + milestones as required. Hit me with the actual task.
2026-05-26T22:48:41