-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopenclaw.skill.json
More file actions
162 lines (162 loc) · 4.63 KB
/
Copy pathopenclaw.skill.json
File metadata and controls
162 lines (162 loc) · 4.63 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
{
"id": "sql-dreamer",
"name": "OpenClaw SQL Dreamer",
"version": "0.1.0",
"description": "SQL-backed memory corpus feeder and dream output archiver for OpenClaw. Replaces file-based memory ingestion with curated SQL queries, archives dream phase outputs (light/REM/deep) to SQL, and keeps the filesystem lean.",
"author": "Oblio Falootin <oblio.falootin@gmail.com>",
"license": "MIT",
"keywords": [
"openclaw",
"memory",
"sql",
"dreaming",
"sql-server",
"archive",
"corpus"
],
"homepage": "https://github.com/High-Falootin/openclaw-SQL-dreamer",
"repository": {
"type": "git",
"url": "https://github.com/High-Falootin/openclaw-SQL-dreamer.git"
},
"skills": [
"./skills"
],
"configSchema": {
"type": "object",
"additionalProperties": false,
"required": [
"sql",
"corpus",
"dreaming"
],
"properties": {
"sql": {
"type": "object",
"description": "SQL Server connection settings",
"additionalProperties": false,
"properties": {
"server": {
"type": "string",
"description": "SQL Server hostname or IP"
},
"database": {
"type": "string",
"description": "Database name"
},
"username": {
"type": "string",
"description": "SQL auth username"
},
"password": {
"type": "string",
"description": "SQL auth password \u2014 prefer env SQL_PASSWORD"
},
"connection_string": {
"type": "string",
"description": "Full ODBC connection string (overrides server/database/username/password)"
}
}
},
"corpus": {
"type": "object",
"description": "Controls which memories are pulled into the dream corpus",
"additionalProperties": false,
"properties": {
"importance_threshold": {
"type": "integer",
"minimum": 1,
"maximum": 10,
"default": 7,
"description": "Minimum importance score (1-10) for a memory to enter the dream corpus"
},
"lookback_days": {
"type": "integer",
"minimum": 1,
"default": 2,
"description": "How many days back to pull memories for the nightly corpus"
}
}
},
"dreaming": {
"type": "object",
"description": "Dream cycle and archival settings",
"additionalProperties": false,
"properties": {
"workspace_dir": {
"type": "string",
"description": "Absolute path to OpenClaw workspace root (where memory/ lives)"
},
"phases": {
"type": "object",
"additionalProperties": false,
"properties": {
"light": {
"type": "object",
"properties": {
"enabled": {
"type": "boolean",
"default": true
}
}
},
"rem": {
"type": "object",
"properties": {
"enabled": {
"type": "boolean",
"default": true
}
}
},
"deep": {
"type": "object",
"properties": {
"enabled": {
"type": "boolean",
"default": true
}
}
}
}
},
"archive_after_days": {
"type": "integer",
"minimum": 1,
"default": 7,
"description": "Delete dream output .md files older than this many days"
}
}
},
"confluence": {
"type": "object",
"description": "Optional Confluence publishing (disabled by default)",
"additionalProperties": false,
"properties": {
"enabled": {
"type": "boolean",
"default": false
},
"domain": {
"type": "string",
"description": "e.g. yourorg.atlassian.net"
},
"email": {
"type": "string"
},
"api_token": {
"type": "string",
"description": "Prefer env CONFLUENCE_API_TOKEN"
},
"space_key": {
"type": "string"
},
"parent_page_id": {
"type": "string",
"description": "Confluence page ID for Memory Palace parent"
}
}
}
}
}
}