@harness-lab/cli 0.2.0 → 0.2.2

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.
Files changed (48) hide show
  1. package/README.md +14 -5
  2. package/assets/workshop-bundle/SKILL.md +295 -0
  3. package/assets/workshop-bundle/bundle-manifest.json +172 -0
  4. package/assets/workshop-bundle/content/challenge-cards/.gitkeep +0 -0
  5. package/assets/workshop-bundle/content/challenge-cards/deck.md +38 -0
  6. package/assets/workshop-bundle/content/challenge-cards/print-spec.md +28 -0
  7. package/assets/workshop-bundle/content/facilitation/.gitkeep +0 -0
  8. package/assets/workshop-bundle/content/facilitation/codex-setup-verification.md +54 -0
  9. package/assets/workshop-bundle/content/facilitation/master-guide.md +131 -0
  10. package/assets/workshop-bundle/content/project-briefs/.gitkeep +0 -0
  11. package/assets/workshop-bundle/content/project-briefs/code-review-helper.md +31 -0
  12. package/assets/workshop-bundle/content/project-briefs/devtoolbox-cli.md +31 -0
  13. package/assets/workshop-bundle/content/project-briefs/doc-generator.md +31 -0
  14. package/assets/workshop-bundle/content/project-briefs/metrics-dashboard.md +31 -0
  15. package/assets/workshop-bundle/content/project-briefs/standup-bot.md +31 -0
  16. package/assets/workshop-bundle/content/style-examples.md +127 -0
  17. package/assets/workshop-bundle/content/style-guide.md +106 -0
  18. package/assets/workshop-bundle/content/talks/.gitkeep +0 -0
  19. package/assets/workshop-bundle/content/talks/codex-demo-script.md +43 -0
  20. package/assets/workshop-bundle/content/talks/context-is-king.md +42 -0
  21. package/assets/workshop-bundle/docs/harness-cli-foundation.md +112 -0
  22. package/assets/workshop-bundle/docs/learner-reference-gallery.md +82 -0
  23. package/assets/workshop-bundle/docs/learner-resource-kit.md +126 -0
  24. package/assets/workshop-bundle/docs/workshop-event-context-contract.md +123 -0
  25. package/assets/workshop-bundle/materials/participant-resource-kit.md +72 -0
  26. package/assets/workshop-bundle/workshop-blueprint/README.md +48 -0
  27. package/assets/workshop-bundle/workshop-blueprint/agenda.json +70 -0
  28. package/assets/workshop-bundle/workshop-blueprint/control-surfaces.md +101 -0
  29. package/assets/workshop-bundle/workshop-blueprint/day-structure.md +129 -0
  30. package/assets/workshop-bundle/workshop-blueprint/edit-boundaries.md +64 -0
  31. package/assets/workshop-bundle/workshop-blueprint/operator-guide.md +74 -0
  32. package/assets/workshop-bundle/workshop-blueprint/teaching-spine.md +134 -0
  33. package/assets/workshop-bundle/workshop-skill/.gitkeep +0 -0
  34. package/assets/workshop-bundle/workshop-skill/analyze-checklist.md +21 -0
  35. package/assets/workshop-bundle/workshop-skill/closing-skill.md +30 -0
  36. package/assets/workshop-bundle/workshop-skill/commands.md +44 -0
  37. package/assets/workshop-bundle/workshop-skill/facilitator.md +416 -0
  38. package/assets/workshop-bundle/workshop-skill/follow-up-package.md +35 -0
  39. package/assets/workshop-bundle/workshop-skill/install.md +58 -0
  40. package/assets/workshop-bundle/workshop-skill/recap.md +22 -0
  41. package/assets/workshop-bundle/workshop-skill/reference.md +80 -0
  42. package/assets/workshop-bundle/workshop-skill/setup.md +84 -0
  43. package/assets/workshop-bundle/workshop-skill/template-agents.md +35 -0
  44. package/package.json +8 -3
  45. package/src/client.js +3 -1
  46. package/src/run-cli.js +16 -9
  47. package/src/skill-install.js +98 -57
  48. package/src/workshop-bundle.js +233 -0
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Harness CLI
2
2
 
3
- Small Harness Lab CLI for facilitator auth, workshop operations, and repo-local skill installation.
3
+ Small Harness Lab CLI for facilitator auth, workshop operations, and portable workshop skill installation.
4
4
 
5
5
  Current shipped scope:
6
6
 
@@ -63,14 +63,23 @@ harness version
63
63
  harness --help
64
64
  ```
65
65
 
66
- Install the repo-local workshop skill bundle for Codex/pi discovery:
66
+ Install the portable workshop skill bundle into your current repo for Codex/pi discovery:
67
67
 
68
68
  ```bash
69
69
  harness skill install
70
70
  ```
71
71
 
72
- This creates `.agents/skills/harness-lab-workshop` in the current Harness Lab repo checkout.
73
- After install, the CLI prints the first recommended agent commands, starting with `Codex: $workshop reference` and `pi: /skill:workshop`.
72
+ Optional explicit target:
73
+
74
+ ```bash
75
+ harness skill install --target /path/to/team-repo
76
+ ```
77
+
78
+ This creates `.agents/skills/harness-lab-workshop` in the target repo. The install does not require a local clone of the Harness Lab source repo.
79
+ Rerunning `harness skill install` refreshes the installed bundle when the packaged workshop content changed and reports clearly when the target is already current. Use `--force` only when you want a full reinstall.
80
+ After install, the CLI prints the first recommended agent commands, starting with `Codex: $workshop commands` and `pi: /skill:workshop`.
81
+
82
+ Treat `.agents/skills/harness-lab-workshop` as generated workshop bundle content. The canonical authored source remains in this repository under `workshop-skill/`, `workshop-blueprint/`, selected `docs/`, and selected `materials/`.
74
83
 
75
84
  Default device/browser login:
76
85
 
@@ -135,5 +144,5 @@ Environment variables:
135
144
  ## Release Gate
136
145
 
137
146
  Public npm publication is controlled by the release gate in
138
- [docs/harness-cli-publication-gate.md](/Users/ondrejsvec/projects/Bobo/harness-lab/docs/harness-cli-publication-gate.md).
147
+ [docs/harness-cli-publication-gate.md](../docs/harness-cli-publication-gate.md).
139
148
  Normal development should still happen from this repository; npm is the participant-facing distribution path, not a substitute for repo-local development.
@@ -0,0 +1,295 @@
1
+ ---
2
+ name: workshop
3
+ description: >
4
+ Participant-facing skill for the Harness Lab workshop. Supports the
5
+ `workshop` skill interface for setup, briefs, challenges, reference
6
+ materials, recap, and facilitator actions using live dashboard data when
7
+ available and local fallback content otherwise.
8
+ allowed-tools:
9
+ - Read
10
+ - Grep
11
+ - Glob
12
+ - Agent
13
+ - AskUserQuestion
14
+ - Write
15
+ - Edit
16
+ - Bash
17
+ ---
18
+
19
+ # Workshop
20
+
21
+ Participant-facing skill for the Harness Lab workshop. All participant-facing copy is Czech. Technical terms stay in English.
22
+
23
+ ## Purpose
24
+
25
+ This skill is the primary workshop interface for participants in Codex or pi. It should prefer live dashboard API data when available and fall back to the local bundled content when the API is unavailable.
26
+
27
+ The portable install path should make this skill usable from the participant's real working repo without requiring a clone of the Harness Lab source repo.
28
+
29
+ Core mental model:
30
+ - dashboard participant surface = orientace během dne
31
+ - dashboard facilitator surface = řízení workshop instance
32
+ - workshop skill = AI interface ke stejnému workshop systému
33
+ - workshop blueprint = veřejná kanonická definice workshop method
34
+
35
+ ## Sources Of Truth
36
+
37
+ Use runtime dashboard data for anything that changes during the workshop day:
38
+ - current agenda phase
39
+ - continuation reveal state
40
+ - live team registry
41
+ - checkpoints and sprint updates
42
+ - facilitator-only status when the command explicitly requires facilitator access
43
+
44
+ Use repo-native content for stable public guidance:
45
+ - `content/` workshop materials
46
+ - `workshop-skill/` reference docs
47
+ - `workshop-blueprint/` for the reusable workshop method
48
+ - challenge cards, project briefs, and public-safe framing
49
+
50
+ Rule:
51
+ - runtime APIs first for live workshop state
52
+ - repo docs first for durable workshop guidance
53
+ - if runtime is unavailable, fall back to repo material and say explicitly that the answer is fallback rather than live state
54
+ - runtime edits do not imply blueprint edits; reusable changes belong back in the repo deliberately
55
+
56
+ ## Commands
57
+
58
+ Syntax:
59
+ - in Codex, invoke this skill as `$workshop ...`
60
+ - in pi, load it with `/skill:workshop` or let pi auto-load it, then ask for the relevant workshop action in natural language
61
+ - the command names below are runtime-neutral descriptions of the same interface
62
+
63
+ ### `workshop`
64
+
65
+ Show:
66
+ - current agenda phase
67
+ - what the team should be doing right now
68
+ - next hard milestone before the next facilitation checkpoint
69
+ - if the dashboard is unavailable, infer the likely phase from local workshop materials and say clearly that this is fallback mode
70
+ - if private event access is not active, clearly say which answers are fallback/public-only versus live event context
71
+
72
+ ### `workshop login`
73
+
74
+ Ask for the shared event code and redeem it into a short-lived participant session.
75
+ After success:
76
+ - confirm live mode is active
77
+ - say when the participant may need to log in again
78
+ - keep facilitator-only data unavailable
79
+
80
+ ### `workshop logout`
81
+
82
+ Clear the current participant session and return to fallback/public-only mode.
83
+
84
+ ### `workshop setup`
85
+
86
+ Guide the participant through Codex or pi setup in Czech. Prefer the fastest viable path:
87
+ - pi in terminal when the participant wants a hackable multi-model interface
88
+ - Codex CLI on macOS/Linux
89
+ - Codex App on Windows or macOS
90
+ - web fallback if local install is blocked
91
+ Use the content from `workshop-skill/setup.md`.
92
+
93
+ ### `workshop brief`
94
+
95
+ Show the assigned project brief. Include:
96
+ - problem statement
97
+ - user stories
98
+ - architecture considerations
99
+ - first recommended prompt for the AI agent
100
+
101
+ ### `workshop challenges`
102
+
103
+ Show available challenge cards, clearly marking:
104
+ - semi-mandatory before lunch
105
+ - semi-mandatory after the continuation shift
106
+ - optional stretch cards
107
+
108
+ ### `workshop team`
109
+
110
+ Show:
111
+ - team name
112
+ - members
113
+ - repo URL
114
+ - current sprint checkpoint
115
+
116
+ ### `workshop help`
117
+
118
+ Give phase-aware coaching. Examples:
119
+ - during Build Phase 1: remind the team to get a short `AGENTS.md`, a plan, commands, one executable check, and a reviewed output in place
120
+ - during the continuation shift: tell the team to read before editing and to preserve evidence of what they changed
121
+ - when the team is letting the agent work with more autonomy: push them toward tests, tracer bullets, or another executable check
122
+ - for UI work: recommend `agent exploration -> Playwright regression -> human review` as the safe default workflow
123
+ - when teams keep repeating the same rule out loud: push them to encode it in the repo instead of relying on chat memory
124
+ - when the user asks generally what the skill can do, prefer returning a short menu based on `workshop-skill/commands.md` plus the best next step
125
+
126
+ ### `workshop template`
127
+
128
+ Generate a starter `AGENTS.md` for the participant's current project using the 4-element structure:
129
+ - goal
130
+ - context
131
+ - constraints
132
+ - done when
133
+ Use `workshop-skill/template-agents.md` as the default scaffold.
134
+ Keep it short and map-like. Prefer links to deeper docs over long prose dumps.
135
+
136
+ ### `workshop recap`
137
+
138
+ Return a short post-workshop reinforcement prompt in Czech.
139
+ Use the content from `workshop-skill/recap.md`.
140
+
141
+ ### `workshop commands`
142
+
143
+ Return a short participant-facing menu of the skill surface:
144
+ - what the main commands are
145
+ - when to use them
146
+ - the shortest recommended path for a new participant
147
+ Use `workshop-skill/commands.md`.
148
+
149
+ ### `workshop closing`
150
+
151
+ Prepare Ondrej's closing synthesis by using:
152
+ - sprint checkpoints from the dashboard
153
+ - monitoring summary
154
+ - W³ commitments or closing notes
155
+ Use `workshop-skill/closing-skill.md`.
156
+ Treat this as facilitator-facing. Do not proactively surface it to participants during normal workshop help.
157
+
158
+ ### `workshop reference`
159
+
160
+ Return the workshop reference card from `workshop-skill/reference.md`.
161
+
162
+ ### `workshop resources`
163
+
164
+ Return the participant-facing resource bundle after or during the workshop.
165
+ Use these sources together:
166
+ - `materials/participant-resource-kit.md`
167
+ - `docs/learner-resource-kit.md`
168
+
169
+ The response should:
170
+ - summarize what is in the kit
171
+ - explain what to use during the workshop versus after it
172
+ - point the participant to the most useful next artifact rather than dumping links only
173
+
174
+ ### `workshop gallery`
175
+
176
+ Return the curated external reference gallery from `docs/learner-reference-gallery.md`.
177
+ Use this when the participant asks for further reading, public examples, optional skill packs, or recommended external resources after the workshop.
178
+
179
+ ### `workshop follow-up`
180
+
181
+ Return the follow-up package from `workshop-skill/follow-up-package.md`.
182
+ Use this when the participant asks what to do after the workshop, what to revisit tomorrow, or what materials to keep using next week.
183
+
184
+ ### `workshop facilitator login`
185
+
186
+ Authenticate as a facilitator through the `harness` CLI privileged path.
187
+ The skill should ask the facilitator to complete CLI login/bootstrap if needed, then use the CLI-backed session for subsequent commands.
188
+ This is a facilitator-only command — do not surface to participants.
189
+
190
+ ### `workshop facilitator status`
191
+
192
+ Show the current instance state, agenda phase, facilitator list, and team count.
193
+ Requires active facilitator session.
194
+
195
+ ### `workshop facilitator grant <email> <role>`
196
+
197
+ Grant a Neon Auth user access to the current workshop instance.
198
+ Roles: owner, operator, observer. Requires `owner` role.
199
+
200
+ ### `workshop facilitator revoke <email>`
201
+
202
+ Revoke a facilitator's access to the current instance. Requires `owner` role.
203
+
204
+ ### `workshop facilitator create-instance`
205
+
206
+ Create a new workshop instance from a template. Requires facilitator session.
207
+ Prefer invoking `harness workshop create-instance` over raw API scripts.
208
+
209
+ The skill should support rich event metadata, not just id and city:
210
+ - `id`
211
+ - `templateId`
212
+ - `eventTitle`
213
+ - `city`
214
+ - `dateRange`
215
+ - `venueName`
216
+ - `roomName`
217
+ - `addressLine`
218
+ - `locationDetails`
219
+ - `facilitatorLabel`
220
+
221
+ ### `workshop facilitator update-instance <instance-id>`
222
+
223
+ Update event metadata for an existing workshop instance. Requires facilitator session.
224
+ Prefer invoking `harness workshop update-instance` over raw API scripts.
225
+ Use this when the facilitator wants to correct or refine date, venue, room, address, or event title without resetting the instance.
226
+
227
+ ### `workshop facilitator remove-instance`
228
+
229
+ Remove a workshop instance from the active list without deleting its archive history. Requires facilitator session.
230
+ Prefer invoking `harness workshop remove-instance`.
231
+
232
+ ### `workshop facilitator prepare`
233
+
234
+ Set the current instance to `prepared` state. Verify event code is ready.
235
+ Prefer invoking `harness workshop prepare`.
236
+
237
+ ### `workshop facilitator agenda`
238
+
239
+ Inspect and edit the local agenda copy for one workshop instance. Requires facilitator session.
240
+
241
+ ### `workshop facilitator scenes`
242
+
243
+ Inspect and edit presenter scenes for one workshop instance. This includes listing scenes for an agenda item, creating a new scene, editing content, changing default scene, reordering scenes, and enabling or hiding scenes. Requires facilitator session.
244
+
245
+ ### `workshop facilitator archive`
246
+
247
+ Archive the current workshop instance with optional notes.
248
+
249
+ ### `workshop analyze`
250
+
251
+ Review the team's repo against the handoff criteria in `workshop-skill/analyze-checklist.md`.
252
+ Return:
253
+ - what helps continuation
254
+ - what is missing
255
+ - one concrete next improvement
256
+ - whether the repo makes the next safe move obvious for a new team
257
+
258
+ ## Fallback Content
259
+
260
+ If the API is not reachable, use the local content in this folder and the markdown files under `content/`.
261
+
262
+ When falling back:
263
+ - say explicitly that live workshop data is unavailable
264
+ - avoid inventing team state, checkpoint state, or facilitator-only information
265
+ - prefer reference guidance, setup help, templates, and local briefs over pretending to know the current live state
266
+
267
+ Relevant local files:
268
+ - `workshop-skill/setup.md`
269
+ - `workshop-skill/commands.md`
270
+ - `workshop-skill/reference.md`
271
+ - `workshop-skill/recap.md`
272
+ - `workshop-skill/template-agents.md`
273
+ - `workshop-skill/analyze-checklist.md`
274
+ - `workshop-skill/closing-skill.md`
275
+ - `workshop-skill/follow-up-package.md`
276
+ - `workshop-skill/facilitator.md`
277
+ - `materials/participant-resource-kit.md`
278
+ - `docs/learner-resource-kit.md`
279
+ - `docs/learner-reference-gallery.md`
280
+ - `content/project-briefs/*.md`
281
+ - `content/challenge-cards/deck.md`
282
+ - `workshop-blueprint/*`
283
+ - `docs/workshop-event-context-contract.md`
284
+ - `docs/harness-cli-foundation.md`
285
+
286
+ ## Style
287
+
288
+ - Be concise and directive.
289
+ - Use Czech for explanations.
290
+ - Keep command names, file names, and code terms in English.
291
+ - Prefer actionable next steps over theory during build phases.
292
+ - Treat tests and executable checks as the default trust boundary once the agent is doing meaningful implementation work.
293
+ - Prefer repo-native guidance over advice that would stay only in chat.
294
+ - Treat `AGENTS.md` as a map that points to sources of truth, not as a giant instruction dump.
295
+ - Do not present unrestricted browser autonomy in a normal authenticated browser as the default recommendation.
@@ -0,0 +1,172 @@
1
+ {
2
+ "manifestVersion": 1,
3
+ "bundleName": "harness-lab-workshop",
4
+ "bundleVersion": "0.2.2",
5
+ "contentHash": "6d6ce5d3aa65d63167694b96c4db70bdd77c6084b529fdf78711c0a24c4e704d",
6
+ "files": [
7
+ {
8
+ "path": "content/challenge-cards/.gitkeep",
9
+ "sha256": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"
10
+ },
11
+ {
12
+ "path": "content/challenge-cards/deck.md",
13
+ "sha256": "de269aabe1a598294dbd1a2c2fb5dc858fd381811446fc649ff29555a67eda07"
14
+ },
15
+ {
16
+ "path": "content/challenge-cards/print-spec.md",
17
+ "sha256": "be7ecfdae9ada4145272f12e2d6018ccde7cfaeb9f48feb58aca7da7236815c0"
18
+ },
19
+ {
20
+ "path": "content/facilitation/.gitkeep",
21
+ "sha256": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"
22
+ },
23
+ {
24
+ "path": "content/facilitation/codex-setup-verification.md",
25
+ "sha256": "0d7e36a8f2b8c68939997b117f1b5cf1538a5b9e27f2d18948a1ac407543de8e"
26
+ },
27
+ {
28
+ "path": "content/facilitation/master-guide.md",
29
+ "sha256": "3199e25208552384efc5bafd9be512dd8e9cb428a39ea443af9eb4569f32d37a"
30
+ },
31
+ {
32
+ "path": "content/project-briefs/.gitkeep",
33
+ "sha256": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"
34
+ },
35
+ {
36
+ "path": "content/project-briefs/code-review-helper.md",
37
+ "sha256": "0d70c455d000ec8bc01337db5feee2174be8359730b5c278cccee9c3e6b0f2f7"
38
+ },
39
+ {
40
+ "path": "content/project-briefs/devtoolbox-cli.md",
41
+ "sha256": "867ba1b28413fcf43a95cc247ec07656f31b2fdc7bf4512fd5b4316a31f0e27b"
42
+ },
43
+ {
44
+ "path": "content/project-briefs/doc-generator.md",
45
+ "sha256": "3f3bea866c68a927916d90fa3e387ceccdd174290944bc83db7b89d43f3ba7a0"
46
+ },
47
+ {
48
+ "path": "content/project-briefs/metrics-dashboard.md",
49
+ "sha256": "a678058b6515fec4acba5d288bb71a725dfe9e75320efa11a475d63492db14f6"
50
+ },
51
+ {
52
+ "path": "content/project-briefs/standup-bot.md",
53
+ "sha256": "bf3af5bd1c72b5d4f3f5639c82d8e28dfbd4b470b0181833a2fff6e12eb99221"
54
+ },
55
+ {
56
+ "path": "content/style-examples.md",
57
+ "sha256": "21bc5f03aeff64cc6441e521ab006f8fcf1ec0c2f55630f218a08108fe6a32f2"
58
+ },
59
+ {
60
+ "path": "content/style-guide.md",
61
+ "sha256": "0f4661a267bdec133d3eeddb36a4c86ad15c3f09a4975d6d1ed0afa7c918ae1c"
62
+ },
63
+ {
64
+ "path": "content/talks/.gitkeep",
65
+ "sha256": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"
66
+ },
67
+ {
68
+ "path": "content/talks/codex-demo-script.md",
69
+ "sha256": "560eec6e45a45e0cf02a85a47f5c34ea30cf741ab592c411eab96fd90ca4c1f8"
70
+ },
71
+ {
72
+ "path": "content/talks/context-is-king.md",
73
+ "sha256": "338a357e1a61cdc5b2956f0191d699d13cee8ba1ea5047af4656985cd2ff4713"
74
+ },
75
+ {
76
+ "path": "docs/harness-cli-foundation.md",
77
+ "sha256": "94d5004a795e3e3669433be9f5b480bbe71b0aaf8ba32b060f930896fb1ee2ac"
78
+ },
79
+ {
80
+ "path": "docs/learner-reference-gallery.md",
81
+ "sha256": "fe00f671111eba6092cf28941277c6e4b45dff3c01396cffd351799daee292e5"
82
+ },
83
+ {
84
+ "path": "docs/learner-resource-kit.md",
85
+ "sha256": "47819b6134e5184ec229a5f0cc61d9be0718434d59ad1cc49c263b8fb8388a48"
86
+ },
87
+ {
88
+ "path": "docs/workshop-event-context-contract.md",
89
+ "sha256": "a7706a398ea5250537fb34323c4371ea2a7db15e477aec3a7893e6089fcd281f"
90
+ },
91
+ {
92
+ "path": "materials/participant-resource-kit.md",
93
+ "sha256": "73cf30345820fec8547af96a360997562dbd4c18c8f1cfb8758e20d727c449bf"
94
+ },
95
+ {
96
+ "path": "SKILL.md",
97
+ "sha256": "8a390c373bde15558f3a552803cad2240cf926578f2b54b33baf56f4d472374f"
98
+ },
99
+ {
100
+ "path": "workshop-blueprint/agenda.json",
101
+ "sha256": "6b8e1925e20fabccfd3cd9e9d79839855f51b2b7fd449efbb336bf3edd4eadce"
102
+ },
103
+ {
104
+ "path": "workshop-blueprint/control-surfaces.md",
105
+ "sha256": "623930d85b50a35270a721c79b6af05e31facfd85636c4388a0d8361f59b7785"
106
+ },
107
+ {
108
+ "path": "workshop-blueprint/day-structure.md",
109
+ "sha256": "2d2c7a43e959059fe5d3dbb2aae20e6828fee40c700729080677c2c7b6feb0dc"
110
+ },
111
+ {
112
+ "path": "workshop-blueprint/edit-boundaries.md",
113
+ "sha256": "d5a2b6039ff9d3acc5b3a58698289817a29d52af4058034f00bc188db6f5d84d"
114
+ },
115
+ {
116
+ "path": "workshop-blueprint/operator-guide.md",
117
+ "sha256": "c1cc4d64bfeed153e6b37d9e9fe8b270d052cd98fca17793891e04b37008149d"
118
+ },
119
+ {
120
+ "path": "workshop-blueprint/README.md",
121
+ "sha256": "f82176f7476fd2ce3673f42dbdbe6a1ea250e833b177be0a7a5dc8318a6b3e41"
122
+ },
123
+ {
124
+ "path": "workshop-blueprint/teaching-spine.md",
125
+ "sha256": "3fd140be90cabb651907e71380c292a5b76746f97367adb23571a4fead1df6b4"
126
+ },
127
+ {
128
+ "path": "workshop-skill/.gitkeep",
129
+ "sha256": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"
130
+ },
131
+ {
132
+ "path": "workshop-skill/analyze-checklist.md",
133
+ "sha256": "46c96ddda53e9b6086187c519e7126cce9b63d6d71f9462e306c741445756077"
134
+ },
135
+ {
136
+ "path": "workshop-skill/closing-skill.md",
137
+ "sha256": "e83e381216fad93356b94da89ca2525e01978d13005f2b0f11cf5ed32382971a"
138
+ },
139
+ {
140
+ "path": "workshop-skill/commands.md",
141
+ "sha256": "c6e432e770df361c03cf81910ffef9724f50a2c8e99faec54263c27921cbfc59"
142
+ },
143
+ {
144
+ "path": "workshop-skill/facilitator.md",
145
+ "sha256": "3ba33e10a9820b8f46beb0cdfae362a7bd35e093aa3ee250647a45000667c681"
146
+ },
147
+ {
148
+ "path": "workshop-skill/follow-up-package.md",
149
+ "sha256": "01bbd1f9bf7458a1e8ceb55eee5aab749448c613cc70a91bb7b2bf14240ce593"
150
+ },
151
+ {
152
+ "path": "workshop-skill/install.md",
153
+ "sha256": "196226385ac1bf38dfa7df3845692505db62f9e08a4c0027e2722c423bf4fa24"
154
+ },
155
+ {
156
+ "path": "workshop-skill/recap.md",
157
+ "sha256": "9310f61f5adcace4c97b249d0f27e3a423b5b3a278ec6f2440bf7a66d04a3058"
158
+ },
159
+ {
160
+ "path": "workshop-skill/reference.md",
161
+ "sha256": "45364102e4e57af38e150671eb42602a572d9588ad45e7604a6e5327a311f14c"
162
+ },
163
+ {
164
+ "path": "workshop-skill/setup.md",
165
+ "sha256": "ed5af717dadf8aeac256a393bd6edc103362cc91674a0c36a0a3580aa37c18ae"
166
+ },
167
+ {
168
+ "path": "workshop-skill/template-agents.md",
169
+ "sha256": "14141706f104f16373642a08a43e66ac9fd8231da46615c898587fad2fa503ee"
170
+ }
171
+ ]
172
+ }
@@ -0,0 +1,38 @@
1
+ # Challenge Cards
2
+
3
+ Karty nejsou body navíc. Jsou to malé zásahy, které zlepšují způsob práce s agentem i kvalitu handoffu.
4
+
5
+ ## Context Engineering
6
+
7
+ - `Vytvořte AGENTS.md jako mapu` — sepište cíl, build/test příkazy, trvalá pravidla a kam má další tým sáhnout jako první.
8
+ - `Přidejte build/test příkazy` — agent musí umět ověřit výsledek bez ručního dovysvětlování.
9
+ - `Napište skill pro code review` — formalizujte jednu review rutinu, kterou by uměl použít i cizí tým.
10
+ - `Přesuňte pravidlo z hovoru do repa` — vše, co už tým řekl dvakrát nahlas, převeďte do `AGENTS.md`, README, runbooku nebo testu.
11
+
12
+ ## Workflow
13
+
14
+ - `Použijte /plan před kódováním` — ukažte, z jakého planu tým vycházel, co z něj opravdu plní a jaký je další safe move.
15
+ - `Rozdělte práci do více vláken` — zkuste dvě nezávislé linie práce a jednoho člověka na integraci.
16
+ - `Delegujte úkol a vraťte se ke kontrole za 10 minut` — neskákejte agentovi do každého kroku, kontrolujte až výsledek.
17
+ - `Přidejte nejmenší užitečné ověření` — vytvořte RED test, tracer bullet nebo jednoduchý browser check dřív, než agent dostane víc autonomie.
18
+
19
+ ## Advanced
20
+
21
+ - `Spusťte 2 paralelní Codex sessions` — rozdělte problém na dvě nezávislé části a porovnejte výstupy.
22
+ - `Vytvořte runbook pro deployment` — i kdyby deploy zůstal jen simulovaný.
23
+ - `Napište AGENTS.md pro podsložku` — ukažte, že kontext může být globální i lokální.
24
+ - `Zaveďte garbage collection` — najděte jednu opakující se formu chaosu a proměňte ji v check, template nebo pravidlo.
25
+
26
+ ## Meta
27
+
28
+ - `Přesuňte trvalé pravidlo z promptu do AGENTS.md`.
29
+ - `Přidejte sekci Done When ke každému tasku`.
30
+ - `Napište README pro tým po rotaci, ne pro sebe`.
31
+ - `Zapište, co je skutečně ověřené` — odlište hotové, rozpracované a jen předpokládané.
32
+
33
+ ## Jak s kartami pracovat
34
+
35
+ - Před obědem má každý tým splnit aspoň jednu kartu z `Context Engineering`.
36
+ - Před rotací má být v repu dohledatelné, co bylo opravdu ověřeno a jaký je další safe move.
37
+ - Po rotaci má každý tým splnit aspoň jednu kartu z `Workflow`.
38
+ - Ostatní karty jsou dobrovolné. Berte je jako stretch cíle nebo inspiraci, když nevíte, co zlepšit dál.
@@ -0,0 +1,28 @@
1
+ # Challenge Cards Print Spec
2
+
3
+ ## Formát
4
+
5
+ - velikost: A6 nebo čtvrtina A4
6
+ - oboustranný tisk není potřeba
7
+ - velký nadpis, 1 krátký popis, 1 ikonický štítek kategorie
8
+
9
+ ## Barevné rozlišení
10
+
11
+ - Context Engineering: písková / žlutá
12
+ - Workflow: modrozelená
13
+ - Advanced: cihlová
14
+ - Meta: šedá
15
+
16
+ ## Layout
17
+
18
+ 1. nahoře název karty
19
+ 2. pod ním kategorie
20
+ 3. 2-3 věty zadání
21
+ 4. dole malý štítek:
22
+ - `Před obědem`
23
+ - `Po rotaci`
24
+ - `Kdykoliv`
25
+
26
+ ## Tisková poznámka
27
+
28
+ Pokud se tisk nestihne, primární kanál je dashboard a `/workshop challenges`. Tisk je bonus, ne závislost workshopu.
@@ -0,0 +1,54 @@
1
+ # Codex Setup Verification
2
+
3
+ ## Cíl
4
+
5
+ Do 10:30 musí mít každý účastník jednu funkční cestu:
6
+
7
+ - `pi`
8
+ - `Codex CLI`
9
+ - `Codex App`
10
+ - nebo web fallback
11
+
12
+ Cíl není perfektní instalace. Cíl je dostat každého co nejdřív do práce s agentem.
13
+
14
+ ## Rychlý start
15
+
16
+ ### macOS / Linux
17
+
18
+ 1. Otevřete terminál.
19
+ 2. Přihlaste se do Codex prostředí podle firemního flow.
20
+ 3. Otevřete repozitář.
21
+ 4. Pošlete první prompt.
22
+
23
+ ### pi
24
+
25
+ 1. Nainstalujte `pi`:
26
+ `npm install -g @mariozechner/pi-coding-agent`
27
+ 2. Přihlaste provider nebo účet, který chcete používat.
28
+ 3. Otevřete repozitář.
29
+ 4. Spusťte `pi`.
30
+ 5. Načtěte workshop skill přes `/skill:workshop` a řekněte si o další krok.
31
+
32
+ ### Windows / macOS
33
+
34
+ 1. Otevřete `Codex App`.
35
+ 2. Přihlaste se.
36
+ 3. Otevřete workshop repo nebo týmový projekt.
37
+ 4. Pošlete první prompt.
38
+
39
+ ### Web fallback
40
+
41
+ Použijte ho ve chvíli, kdy vás blokuje instalace, firemní politika nebo autentizace. Nečekejte na ideální setup, když už můžete pracovat.
42
+
43
+ ## Troubleshooting checklist
44
+
45
+ - Nejde login → přejděte na `App` nebo web fallback a pokračujte.
46
+ - Nejde CLI instalace → nenechte se blokovat déle než 7 minut.
47
+ - Nejde otevřít repo → spárujte se s někým od stolu a vraťte se k tomu později.
48
+ - Nevíte, co je další krok → v Codexu použijte `$workshop setup`. V pi načtěte `/skill:workshop` a řekněte si o setup pomoc.
49
+
50
+ ## Facilitátorské rozhodnutí
51
+
52
+ - 7 minut blokace → fallback nebo pairing.
53
+ - 10 minut chaosu → facilitátor dává jeden konkrétní další krok.
54
+ - Jakmile má člověk jednu funkční cestu, setup je pro tuto chvíli dost dobrý.