ofiere-openclaw-plugin 4.34.0 → 4.35.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/package.json +1 -1
- package/src/prompt.ts +10 -0
- package/src/tools.ts +6219 -6037
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ofiere-openclaw-plugin",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.35.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "OpenClaw plugin for Ofiere PM - 14 meta-tools covering tasks, agents, projects, scheduling, knowledge, workflows, notifications, memory, prompts, constellation, space file management, execution plan builder, SOP management, and agent brain (memory + self-improvement)",
|
|
6
6
|
"keywords": ["openclaw", "ofiere", "project-management", "agents", "plugin"],
|
package/src/prompt.ts
CHANGED
|
@@ -26,6 +26,7 @@ const TOOL_SUMMARIES: Record<string, string> = {
|
|
|
26
26
|
OFIERE_PLAN_OPS: "Visual execution plan builder (DAG drafts → real tasks)",
|
|
27
27
|
OFIERE_SOP_OPS: "Standard Operating Procedures for department chiefs",
|
|
28
28
|
OFIERE_BRAIN_OPS: "Agent memory, knowledge graph, self-improvement (TMT/MAGMA)",
|
|
29
|
+
OFIERE_TALENT_OPS: "Talents: list, get, activate, deactivate cognitive skill presets",
|
|
29
30
|
};
|
|
30
31
|
|
|
31
32
|
// ─── Tier B: Full Tool Documentation ────────────────────────────────────────
|
|
@@ -113,6 +114,15 @@ Actions: "list_templates", "create", "list", "get", "update", "delete", "list_su
|
|
|
113
114
|
Memory Tiers: L1_focus (24h), L2_episode (days), L3_pattern (weeks), L4_rule (permanent), L5_persona (permanent)
|
|
114
115
|
Actions: save_memory, recall, delete_memory, promote_memory, log_learning, list_learnings, resolve_learning, save_entity, link_entities, query_graph, start_trajectory, end_trajectory, get_brain_status
|
|
115
116
|
- This is your SUBCONSCIOUS — use instinctively, not deliberately`,
|
|
117
|
+
|
|
118
|
+
OFIERE_TALENT_OPS: `Manage cognitive skill presets (Talents).
|
|
119
|
+
Actions: "list", "get", "activate", "deactivate"
|
|
120
|
+
- list: List all talents. Optional: category, scope, status
|
|
121
|
+
- get: Get full talent details. Required: talent_id OR name
|
|
122
|
+
- activate: Enable a talent (status → active). Required: talent_id
|
|
123
|
+
- deactivate: Disable a talent (status → inactive). Required: talent_id
|
|
124
|
+
- Active talents inject their execution_protocol and guardrails into your system prompt automatically
|
|
125
|
+
- Talents chain other tools: SPHINX chains KNOWLEDGE_OPS+BRAIN_OPS, PRISM chains BRAIN_OPS trajectories, ATLAS chains PLAN_OPS+TASK_OPS+SOP_OPS`,
|
|
116
126
|
};
|
|
117
127
|
|
|
118
128
|
export function getSystemPrompt(state: {
|