بنقرة واحدة
project-memory
Global Memory System to maintain and manage shared project context.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Global Memory System to maintain and manage shared project context.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Central Super-Skill that orchestrates all Skill Cells of the Conglomerate. Acts as a single entry point and intelligent router to specialized groups.
Enlace A2A del Grupo Backend. Gestiona la comunicación con otros grupos del Conglomerado.
Líder del Grupo Backend. Planifica y delega tareas de APIs, bases de datos, y arquitectura servidor a los especialistas del grupo.
Enlace A2A del Grupo Frontend. Gestiona la comunicación con otros grupos del Conglomerado.
Líder del Grupo Frontend. Planifica y delega tareas de UI/UX, React, Next.js, y desarrollo cliente a los especialistas del grupo.
Convierte entradas de blog en presentaciones visuales sorprendentes para Google Slides
| name | project-memory |
| description | Global Memory System to maintain and manage shared project context. |
| version | 1.0.0 |
| category | utility |
This skill acts as the system's "hippocampus," responsible for storing, retrieving, and updating long-term project contextual information.
To provide a single source of truth about project status, technical decisions, and global configurations, accessible to all authorized agents.
read_contextReads information from the global context.
key (optional): The specific key to read (e.g., tech_stack.languages). If omitted, returns the entire context.memory-store/global_context.yaml.key is provided, navigates the object to find the value.update_contextUpdates or inserts information into the global context.
key: The key to update (e.g., active_phase.current). Supports dot notation for nesting.value: The new value.memory-store/global_context.yaml.log_decisionLogs an important decision or milestone in the project log.
title: Title of the decision.description: Brief description.status: Status (e.g., PROPOSED, ACCEPTED, DEPRECATED).adr_link (optional): Link to the corresponding ADR file.memory-store/global_context.yaml.decisions_log list with the current timestamp.request = {
"type": "QUERY",
"target": "project-memory",
"payload": {
"action": "read_context",
"key": "tech_stack"
}
}
request = {
"type": "TASK",
"target": "project-memory",
"payload": {
"action": "update_context",
"key": "active_phase.status",
"value": "Completed"
}
}
memory-store/: Data storage directory.
global_context.yaml: Main context file.SKILL.md: This file.