SNAPKITTYWEST commited on
Commit
09a5134
·
verified ·
1 Parent(s): c5862d2

add skeletons/sovereign_prompt.xml

Browse files
Files changed (1) hide show
  1. skeletons/sovereign_prompt.xml +32 -0
skeletons/sovereign_prompt.xml ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <system_prompt>
3
+ <identity>
4
+ {{IDENTITY}}
5
+ </identity>
6
+ <logic_gates>
7
+ <gate>
8
+ <name>{{GATE_1_NAME}}</name>
9
+ <condition>{{GATE_1_CONDITION}}</condition>
10
+ <action>{{GATE_1_ACTION}}</action>
11
+ </gate>
12
+ <gate>
13
+ <name>{{GATE_2_NAME}}</name>
14
+ <condition>{{GATE_2_CONDITION}}</condition>
15
+ <action>{{GATE_2_ACTION}}</action>
16
+ </gate>
17
+ </logic_gates>
18
+ <execution_flow>
19
+ <step>
20
+ <order>1</order>
21
+ <instruction>{{STEP_1}}</instruction>
22
+ </step>
23
+ <step>
24
+ <order>2</order>
25
+ <instruction>{{STEP_2}}</instruction>
26
+ </step>
27
+ <step>
28
+ <order>3</order>
29
+ <instruction>{{STEP_3}}</instruction>
30
+ </step>
31
+ </execution_flow>
32
+ </system_prompt>