clideck 1.30.4 → 1.30.6

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.
@@ -0,0 +1,211 @@
1
+ ---
2
+ name: autonomous-session
3
+ description: Run one agent session autonomously until a clearly defined goal is achieved or truly blocked. Use when the user wants the agent to keep working without repeated check-ins, across coding, research, writing, analysis, marketing, planning, or other general session work.
4
+ ---
5
+
6
+ # Autonomous Session
7
+
8
+ Use this skill when the user wants one agent session to keep working toward a goal without stopping for routine confirmation.
9
+
10
+ This skill is general-purpose. It is not limited to coding. It applies to research, writing, planning, analysis, marketing, documentation, and other session-based work.
11
+
12
+ ## Core Contract
13
+
14
+ You are not waiting for permission after every step.
15
+
16
+ - Understand the goal precisely.
17
+ - Keep working until the goal is achieved or truly blocked.
18
+ - Do not stop just to ask whether you should continue.
19
+ - Do not produce filler progress updates instead of real work.
20
+ - Do not redefine the goal casually once work has started.
21
+
22
+ ## First Check: Can This Session Actually Run Autonomously?
23
+
24
+ Before doing substantial work, verify that the session can proceed without routine approval interruptions.
25
+
26
+ If the environment clearly requires recurring user approval for normal work, stop immediately and tell the user, in plain language, that autonomous mode cannot work until approvals are removed or auto-approval is enabled.
27
+
28
+ Do not try to fake autonomy in a session that will keep pausing for user approval.
29
+
30
+ ## Goal Setup
31
+
32
+ Before starting the main work, convert the user request into a concrete internal brief.
33
+
34
+ Your internal brief must include:
35
+
36
+ - Goal: what outcome must exist at the end.
37
+ - Constraints: what must not happen.
38
+ - Definition of done: how you will recognize completion.
39
+ - Open questions: only the questions that would materially change the work.
40
+
41
+ If the goal is already clear enough, do not ask questions. Start working.
42
+
43
+ If the goal is not clear enough to work effectively, ask a small batch of targeted clarifying questions first. Ask only what is necessary to remove ambiguity. Do not interrogate the user unnecessarily.
44
+
45
+ Examples of when to ask questions first:
46
+
47
+ - The user wants research but has not said what decision the research is meant to support.
48
+ - The user wants writing but has not said audience, tone, or deliverable type.
49
+ - The user wants implementation but has not said what behavior should change.
50
+ - The user wants “improve this” but there is no clear success condition.
51
+
52
+ Examples of when not to ask questions first:
53
+
54
+ - The user already gave a concrete task, constraints, and acceptance bar.
55
+ - You can infer a safe, reasonable working interpretation without risking the wrong output.
56
+
57
+ ## Goal Memory
58
+
59
+ If the task involves a real project or working directory, create and maintain a short session memory file early in the process.
60
+
61
+ Preferred filename:
62
+
63
+ ```text
64
+ autonomous-session.md
65
+ ```
66
+
67
+ Keep it concise and practical. It should contain:
68
+
69
+ - Goal
70
+ - Constraints
71
+ - Definition of done
72
+ - Key decisions
73
+ - What has been completed
74
+ - Remaining gaps
75
+
76
+ If a different filename is more natural in the project, use that instead.
77
+
78
+ If there is no meaningful project directory or file-based workflow, maintain the same structure mentally and in your session responses instead of forcing a file.
79
+
80
+ Update this memory whenever the goal changes materially or when major decisions are made. Keep it short. It is a working anchor, not a diary.
81
+
82
+ ## Operating Rules
83
+
84
+ ### 1. Work Forward
85
+
86
+ After the goal is clear, move directly into execution.
87
+
88
+ - Prefer real progress over commentary.
89
+ - Prefer concrete artifacts over abstract planning.
90
+ - Prefer finishing a meaningful chunk before reporting back.
91
+
92
+ ### 2. Do Not Stop Early
93
+
94
+ Do not ask:
95
+
96
+ - “Should I continue?”
97
+ - “Do you want me to keep going?”
98
+ - “Is this enough for now?”
99
+
100
+ The default is to continue until done or blocked.
101
+
102
+ ### 3. Use Judgment, Not Blind Persistence
103
+
104
+ Autonomy does not mean mindless looping.
105
+
106
+ If an approach is not working:
107
+
108
+ - reassess,
109
+ - read the available context again,
110
+ - change tactics,
111
+ - keep moving.
112
+
113
+ Do not repeat the same failing pattern without learning from it.
114
+
115
+ ### 4. Respect the Actual Task
116
+
117
+ Do not turn every task into implementation work.
118
+
119
+ - For research tasks, gather, compare, synthesize, and conclude.
120
+ - For writing tasks, produce and refine the requested deliverable.
121
+ - For planning tasks, produce the plan and then, if appropriate, execute it.
122
+ - For coding tasks, inspect, implement, verify, and refine.
123
+
124
+ Stay aligned with the actual requested outcome.
125
+
126
+ ### 5. Completion Must Be Real
127
+
128
+ Only stop when one of these is true:
129
+
130
+ - The goal is achieved.
131
+ - The remaining blocker genuinely requires user input, approval, credentials, or a missing external dependency.
132
+ - The request is fundamentally ambiguous and cannot be resolved safely without clarification.
133
+
134
+ When stopping, say which of those is true.
135
+
136
+ ## Blockers
137
+
138
+ A blocker is real only if you cannot reasonably move forward without the user.
139
+
140
+ Examples of real blockers:
141
+
142
+ - Missing credentials, API keys, access, or required permissions.
143
+ - A strategic choice the user must make because it changes the deliverable substantially.
144
+ - Multiple valid directions remain and choosing one would be risky or expensive without user preference.
145
+ - The environment prevents autonomous execution through approval prompts or missing capabilities.
146
+
147
+ Examples of non-blockers:
148
+
149
+ - You are unsure which tactic is best.
150
+ - The first attempt failed.
151
+ - More reading is needed.
152
+ - The work is tedious.
153
+ - You can make a reasonable assumption and continue.
154
+
155
+ ## Interruptions And Mid-Task User Messages
156
+
157
+ If the user sends a new message during the work:
158
+
159
+ - incorporate it,
160
+ - update the goal brief if needed,
161
+ - continue from the new state.
162
+
163
+ Do not stubbornly follow an outdated plan when the user has clarified or redirected the work.
164
+
165
+ If the new message changes the goal materially, update the session memory file.
166
+
167
+ ## Reporting Style
168
+
169
+ Use sparse, meaningful updates.
170
+
171
+ Good updates:
172
+
173
+ - major completed milestone,
174
+ - important decision,
175
+ - real blocker,
176
+ - final completion summary.
177
+
178
+ Bad updates:
179
+
180
+ - empty status chatter,
181
+ - repeated reassurance,
182
+ - asking for permission to continue.
183
+
184
+ ## Completion Message
185
+
186
+ When the goal is done, report:
187
+
188
+ - what was accomplished,
189
+ - any important decisions or tradeoffs,
190
+ - any residual risks or follow-up items.
191
+
192
+ Keep it concise and outcome-focused.
193
+
194
+ ## Behavior Summary
195
+
196
+ If this skill is active, your default behavior is:
197
+
198
+ 1. Check whether autonomous execution is actually possible.
199
+ 2. Clarify the goal only if necessary.
200
+ 3. Create a short working brief or memory file when appropriate.
201
+ 4. Work continuously toward the goal.
202
+ 5. Adapt when an approach fails.
203
+ 6. Stop only when done or truly blocked.
204
+
205
+ ## Hard Rules
206
+
207
+ - Do not ask “should I continue?”
208
+ - Do not stop because of ordinary uncertainty.
209
+ - Do not continue blindly when the goal is unclear.
210
+ - Do not pretend a blocker exists when you can still make progress.
211
+ - Do not treat a status update as completion.