@harness-lab/cli 0.2.1 → 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.
- package/README.md +14 -5
- package/assets/workshop-bundle/SKILL.md +295 -0
- package/assets/workshop-bundle/bundle-manifest.json +172 -0
- package/assets/workshop-bundle/content/challenge-cards/.gitkeep +0 -0
- package/assets/workshop-bundle/content/challenge-cards/deck.md +38 -0
- package/assets/workshop-bundle/content/challenge-cards/print-spec.md +28 -0
- package/assets/workshop-bundle/content/facilitation/.gitkeep +0 -0
- package/assets/workshop-bundle/content/facilitation/codex-setup-verification.md +54 -0
- package/assets/workshop-bundle/content/facilitation/master-guide.md +131 -0
- package/assets/workshop-bundle/content/project-briefs/.gitkeep +0 -0
- package/assets/workshop-bundle/content/project-briefs/code-review-helper.md +31 -0
- package/assets/workshop-bundle/content/project-briefs/devtoolbox-cli.md +31 -0
- package/assets/workshop-bundle/content/project-briefs/doc-generator.md +31 -0
- package/assets/workshop-bundle/content/project-briefs/metrics-dashboard.md +31 -0
- package/assets/workshop-bundle/content/project-briefs/standup-bot.md +31 -0
- package/assets/workshop-bundle/content/style-examples.md +127 -0
- package/assets/workshop-bundle/content/style-guide.md +106 -0
- package/assets/workshop-bundle/content/talks/.gitkeep +0 -0
- package/assets/workshop-bundle/content/talks/codex-demo-script.md +43 -0
- package/assets/workshop-bundle/content/talks/context-is-king.md +42 -0
- package/assets/workshop-bundle/docs/harness-cli-foundation.md +112 -0
- package/assets/workshop-bundle/docs/learner-reference-gallery.md +82 -0
- package/assets/workshop-bundle/docs/learner-resource-kit.md +126 -0
- package/assets/workshop-bundle/docs/workshop-event-context-contract.md +123 -0
- package/assets/workshop-bundle/materials/participant-resource-kit.md +72 -0
- package/assets/workshop-bundle/workshop-blueprint/README.md +48 -0
- package/assets/workshop-bundle/workshop-blueprint/agenda.json +70 -0
- package/assets/workshop-bundle/workshop-blueprint/control-surfaces.md +101 -0
- package/assets/workshop-bundle/workshop-blueprint/day-structure.md +129 -0
- package/assets/workshop-bundle/workshop-blueprint/edit-boundaries.md +64 -0
- package/assets/workshop-bundle/workshop-blueprint/operator-guide.md +74 -0
- package/assets/workshop-bundle/workshop-blueprint/teaching-spine.md +134 -0
- package/assets/workshop-bundle/workshop-skill/.gitkeep +0 -0
- package/assets/workshop-bundle/workshop-skill/analyze-checklist.md +21 -0
- package/assets/workshop-bundle/workshop-skill/closing-skill.md +30 -0
- package/assets/workshop-bundle/workshop-skill/commands.md +44 -0
- package/assets/workshop-bundle/workshop-skill/facilitator.md +416 -0
- package/assets/workshop-bundle/workshop-skill/follow-up-package.md +35 -0
- package/assets/workshop-bundle/workshop-skill/install.md +58 -0
- package/assets/workshop-bundle/workshop-skill/recap.md +22 -0
- package/assets/workshop-bundle/workshop-skill/reference.md +80 -0
- package/assets/workshop-bundle/workshop-skill/setup.md +84 -0
- package/assets/workshop-bundle/workshop-skill/template-agents.md +35 -0
- package/package.json +8 -3
- package/src/run-cli.js +16 -9
- package/src/skill-install.js +98 -57
- package/src/workshop-bundle.js +233 -0
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
# Workshop Control Surfaces
|
|
2
|
+
|
|
3
|
+
Harness Lab has one workshop-instance backend and multiple control surfaces with different trust levels.
|
|
4
|
+
|
|
5
|
+
All control surfaces should reinforce the same operating model:
|
|
6
|
+
|
|
7
|
+
- push context into the repo
|
|
8
|
+
- keep the next safe step obvious
|
|
9
|
+
- ask for evidence, not confidence
|
|
10
|
+
- bias participants toward continuation-ready artifacts instead of hidden chat context
|
|
11
|
+
|
|
12
|
+
## Participant Surface
|
|
13
|
+
|
|
14
|
+
Purpose:
|
|
15
|
+
- orient teams during the workshop day
|
|
16
|
+
- show participant-safe phase and room context
|
|
17
|
+
- keep the next action obvious on mobile and on projection
|
|
18
|
+
|
|
19
|
+
Default behavior:
|
|
20
|
+
- show the current phase
|
|
21
|
+
- show the next hard milestone
|
|
22
|
+
- show the next harness move, not only the next feature move
|
|
23
|
+
- remind teams what evidence should exist by the next checkpoint
|
|
24
|
+
|
|
25
|
+
Good prompts from the surface:
|
|
26
|
+
- "Máš už `AGENTS.md` jako mapu repa?"
|
|
27
|
+
- "Je další bezpečný krok dohledatelný pro cizí tým?"
|
|
28
|
+
- "Co dnes opravdu ověřujete, ne jen předpokládáte?"
|
|
29
|
+
|
|
30
|
+
Authentication:
|
|
31
|
+
- public first
|
|
32
|
+
- participant event code unlocks participant-private context for one workshop instance
|
|
33
|
+
|
|
34
|
+
## Facilitator Dashboard
|
|
35
|
+
|
|
36
|
+
Purpose:
|
|
37
|
+
- fast visual control of the active workshop instance
|
|
38
|
+
- safe runtime operations during the day
|
|
39
|
+
|
|
40
|
+
Design rule:
|
|
41
|
+
- facilitator checkpoints should ask for repo evidence
|
|
42
|
+
- status collection should prefer "what changed, what verifies it, what should the next team read first?" over generic progress text
|
|
43
|
+
|
|
44
|
+
Authentication:
|
|
45
|
+
- facilitator identity and instance grant
|
|
46
|
+
|
|
47
|
+
Scope:
|
|
48
|
+
- runtime state only
|
|
49
|
+
- no hidden authority to redefine the blueprint silently
|
|
50
|
+
|
|
51
|
+
## Facilitator Skill
|
|
52
|
+
|
|
53
|
+
Purpose:
|
|
54
|
+
- AI-assisted interface to the same workshop runtime APIs
|
|
55
|
+
- useful when a facilitator wants a conversational control path or guided summaries
|
|
56
|
+
|
|
57
|
+
Default coaching:
|
|
58
|
+
- before lunch, push teams toward `AGENTS.md`, a plan, commands, and one executable check
|
|
59
|
+
- during continuation, push teams to read before editing and to write down what is missing
|
|
60
|
+
- after continuation, push teams to codify repeated pain into docs, checks, or runbooks
|
|
61
|
+
|
|
62
|
+
Authentication:
|
|
63
|
+
- facilitator commands rely on the `harness` CLI for privileged auth bootstrap and stored local session material
|
|
64
|
+
- the skill should not become a second secret store
|
|
65
|
+
|
|
66
|
+
## `harness` CLI
|
|
67
|
+
|
|
68
|
+
Purpose:
|
|
69
|
+
- small local broker for privileged facilitator auth and session storage
|
|
70
|
+
- bootstrap helper for dashboard/skill usage
|
|
71
|
+
- thin operational client over the shared facilitator runtime APIs
|
|
72
|
+
|
|
73
|
+
Required v1 responsibilities:
|
|
74
|
+
|
|
75
|
+
- login
|
|
76
|
+
- logout
|
|
77
|
+
- status
|
|
78
|
+
- secure local session storage
|
|
79
|
+
- passing authenticated requests on behalf of facilitator tooling
|
|
80
|
+
|
|
81
|
+
Explicit non-goals for v1:
|
|
82
|
+
|
|
83
|
+
- participant login
|
|
84
|
+
- replacing the dashboard
|
|
85
|
+
- becoming a second backend
|
|
86
|
+
- auto-publishing runtime edits back into the repo
|
|
87
|
+
|
|
88
|
+
## Vocabulary Rule
|
|
89
|
+
|
|
90
|
+
All facilitator control surfaces should use the same nouns:
|
|
91
|
+
|
|
92
|
+
- blueprint
|
|
93
|
+
- workshop instance
|
|
94
|
+
- participant access
|
|
95
|
+
- facilitator grant
|
|
96
|
+
- current phase
|
|
97
|
+
- continuation shift
|
|
98
|
+
- archive
|
|
99
|
+
- reset
|
|
100
|
+
|
|
101
|
+
The blueprint is the naming authority. Runtime clients should not invent alternate labels for the same operation.
|
|
@@ -0,0 +1,129 @@
|
|
|
1
|
+
# Harness Lab Day Structure
|
|
2
|
+
|
|
3
|
+
Harness Lab is a full-day build workshop about harness engineering: engineering context, instructions, workflow, and review loops so AI-agent work survives another team, another facilitator, and another context window.
|
|
4
|
+
|
|
5
|
+
The workshop should not teach these practices as optional extras layered on top of a hackathon. The practices are the operating system of the day. Every phase should make the next safe harness move more obvious than jumping straight into feature generation.
|
|
6
|
+
|
|
7
|
+
## Core Promise
|
|
8
|
+
|
|
9
|
+
Participants should leave with two things:
|
|
10
|
+
|
|
11
|
+
- a working artifact or tracer-bullet implementation in their team repo
|
|
12
|
+
- a clearer mental model of how to turn agent output into durable engineering work
|
|
13
|
+
|
|
14
|
+
The workshop does not optimize for maximum feature count. It optimizes for continuation quality.
|
|
15
|
+
|
|
16
|
+
## Design Rule
|
|
17
|
+
|
|
18
|
+
Harness Lab teaches by forcing the useful behavior:
|
|
19
|
+
|
|
20
|
+
- repo-native context beats chat memory
|
|
21
|
+
- short maps beat giant instruction dumps
|
|
22
|
+
- verification beats confidence
|
|
23
|
+
- explicit boundaries beat hidden convention
|
|
24
|
+
- cleanup is part of building, not a postponed chore
|
|
25
|
+
|
|
26
|
+
## Day Arc
|
|
27
|
+
|
|
28
|
+
### 1. Opening and framing
|
|
29
|
+
|
|
30
|
+
Goal:
|
|
31
|
+
- explain why harness engineering matters
|
|
32
|
+
- make the repo the operating surface, not the slide deck
|
|
33
|
+
- set expectations around tests, review, and explicit context
|
|
34
|
+
|
|
35
|
+
Habit installed:
|
|
36
|
+
- humans steer, agents execute
|
|
37
|
+
- the engineer's job is to design context, constraints, and feedback loops
|
|
38
|
+
|
|
39
|
+
What teams should hear:
|
|
40
|
+
- success is not "how much code we got"
|
|
41
|
+
- success is whether another team can continue without needing the authors in the room
|
|
42
|
+
|
|
43
|
+
### 2. Context is King talk
|
|
44
|
+
|
|
45
|
+
Goal:
|
|
46
|
+
- demonstrate that better context changes output quality materially
|
|
47
|
+
- show why `AGENTS.md`, plans, and explicit boundaries matter before implementation starts
|
|
48
|
+
|
|
49
|
+
Habit installed:
|
|
50
|
+
- `AGENTS.md` is a map, not a manual
|
|
51
|
+
- if a rule matters, it should live in the repo where the next agent can find it
|
|
52
|
+
|
|
53
|
+
Teaching move:
|
|
54
|
+
- compare one underspecified task with one task that has goal, context, constraints, and done criteria
|
|
55
|
+
- show that progressive disclosure is stronger than one giant prompt blob
|
|
56
|
+
|
|
57
|
+
### 3. Build Phase 1
|
|
58
|
+
|
|
59
|
+
Goal:
|
|
60
|
+
- get every team into a real repo quickly
|
|
61
|
+
- establish a legible operating surface before feature chasing
|
|
62
|
+
- get `AGENTS.md`, a plan, one executable check, and the first reviewed output in place before lunch
|
|
63
|
+
|
|
64
|
+
Expected evidence in the repo:
|
|
65
|
+
- clear task framing
|
|
66
|
+
- explicit working rules
|
|
67
|
+
- a plan or tracked implementation path
|
|
68
|
+
- at least one meaningful verification step
|
|
69
|
+
- a visible next safe step for another person or agent
|
|
70
|
+
|
|
71
|
+
Habit installed:
|
|
72
|
+
- map before motion
|
|
73
|
+
- verification is the trust boundary
|
|
74
|
+
- the first deliverable is harness quality, not feature count
|
|
75
|
+
|
|
76
|
+
### 4. Continuation shift
|
|
77
|
+
|
|
78
|
+
Goal:
|
|
79
|
+
- prove what survives when a different team takes over
|
|
80
|
+
- force teams to read the repo before editing
|
|
81
|
+
- expose missing context, weak runbooks, and fragile assumptions
|
|
82
|
+
|
|
83
|
+
Operating rule:
|
|
84
|
+
- the receiving team reads first
|
|
85
|
+
- the receiving team changes only after it can explain the current state
|
|
86
|
+
- the sending team is not the hidden source of truth
|
|
87
|
+
|
|
88
|
+
Habit installed:
|
|
89
|
+
- if it is not encoded in the repo, it does not exist
|
|
90
|
+
- continuation quality is the real quality check
|
|
91
|
+
|
|
92
|
+
Required first move:
|
|
93
|
+
- the receiving team should first write what helped continuation, what is missing, what looks risky, and what the next safe move is
|
|
94
|
+
|
|
95
|
+
### 5. Reveal and reflection
|
|
96
|
+
|
|
97
|
+
Goal:
|
|
98
|
+
- compare what helped continuation versus what caused friction
|
|
99
|
+
- reinforce the idea that the harness is part of the product
|
|
100
|
+
- collect improvements that belong back in the reusable blueprint
|
|
101
|
+
|
|
102
|
+
Habit installed:
|
|
103
|
+
- cleanup and codification are part of delivery
|
|
104
|
+
- repeated pain should become a better template, check, or runbook
|
|
105
|
+
|
|
106
|
+
## What Must Survive In The Repo
|
|
107
|
+
|
|
108
|
+
- goal and constraints
|
|
109
|
+
- build and test flow
|
|
110
|
+
- architecture boundaries that affect safety or continuation
|
|
111
|
+
- the current plan or handoff status
|
|
112
|
+
- evidence of what was verified
|
|
113
|
+
- the next safe step
|
|
114
|
+
- the small set of rules that the team kept repeating out loud
|
|
115
|
+
|
|
116
|
+
## What The Workshop Teaches Implicitly
|
|
117
|
+
|
|
118
|
+
- context before generation
|
|
119
|
+
- explicit interfaces before hidden backchannels
|
|
120
|
+
- tests and executable checks as trust boundaries
|
|
121
|
+
- documentation that changes decisions, not documentation for its own sake
|
|
122
|
+
- `AGENTS.md` as a table of contents that points to deeper sources of truth
|
|
123
|
+
- small, continuous garbage collection before bad patterns spread
|
|
124
|
+
|
|
125
|
+
## Canonical Agenda Source
|
|
126
|
+
|
|
127
|
+
The reusable agenda lives in [`agenda.json`](agenda.json).
|
|
128
|
+
|
|
129
|
+
Runtime workshop instances import from that blueprint and then track live phase position, reveal state, teams, and checkpoints locally in the private runtime layer.
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
# Edit Boundaries
|
|
2
|
+
|
|
3
|
+
This document is the quick answer to "what do I edit where?"
|
|
4
|
+
|
|
5
|
+
## Edit The Public Blueprint When
|
|
6
|
+
|
|
7
|
+
- you are improving the reusable workshop method
|
|
8
|
+
- you are changing the canonical agenda or phase descriptions
|
|
9
|
+
- you are clarifying participant or facilitator guidance that should apply to future workshops
|
|
10
|
+
- you are refining the control model, API contract, or publish-back rule
|
|
11
|
+
|
|
12
|
+
Typical locations:
|
|
13
|
+
|
|
14
|
+
- [`workshop-blueprint/`](./)
|
|
15
|
+
- [`content/`](../content/)
|
|
16
|
+
- reusable docs in [`docs/`](../docs/)
|
|
17
|
+
- shared dashboard code and skill docs
|
|
18
|
+
|
|
19
|
+
## Edit The Private Runtime Instance When
|
|
20
|
+
|
|
21
|
+
- you are changing the current phase of a live workshop
|
|
22
|
+
- you are revealing or hiding continuation
|
|
23
|
+
- you are registering teams or repo URLs
|
|
24
|
+
- you are capturing checkpoints, monitoring, or sprint updates
|
|
25
|
+
- you are attaching real event metadata such as date, venue, or facilitator notes
|
|
26
|
+
|
|
27
|
+
Typical locations:
|
|
28
|
+
|
|
29
|
+
- private database or private file-backed runtime store
|
|
30
|
+
- facilitator dashboard mutations
|
|
31
|
+
- facilitator skill commands over runtime APIs
|
|
32
|
+
|
|
33
|
+
## Never Store In The Public Repo
|
|
34
|
+
|
|
35
|
+
- real workshop dates, venues, or client names
|
|
36
|
+
- live team registry for a real event
|
|
37
|
+
- facilitator credentials or session material
|
|
38
|
+
- monitoring output tied to a real workshop
|
|
39
|
+
- facilitator-only intervention notes
|
|
40
|
+
|
|
41
|
+
## Source Map
|
|
42
|
+
|
|
43
|
+
| Topic | Public blueprint | Runtime instance | Private ops |
|
|
44
|
+
|-------|------------------|------------------|-------------|
|
|
45
|
+
| workshop framing | yes | no | no |
|
|
46
|
+
| canonical agenda | yes | imported copy only | no |
|
|
47
|
+
| current phase during a live event | no | yes | optional notes only |
|
|
48
|
+
| participant challenge deck | yes | completion state only | no |
|
|
49
|
+
| facilitator grants | no | yes | no |
|
|
50
|
+
| room logistics and staffing notes | no | no | yes |
|
|
51
|
+
| live team repo registry | no | yes | optional exports |
|
|
52
|
+
| post-event reusable improvement | yes, by GitHub edit | no auto-promotion | optional prep notes |
|
|
53
|
+
|
|
54
|
+
## Publishing Rule
|
|
55
|
+
|
|
56
|
+
Runtime edits stay local to the instance.
|
|
57
|
+
|
|
58
|
+
If a facilitator learns something reusable during a live event:
|
|
59
|
+
|
|
60
|
+
1. capture the learning privately if needed
|
|
61
|
+
2. decide whether it changes the reusable method
|
|
62
|
+
3. make a deliberate GitHub edit to the blueprint or related docs
|
|
63
|
+
|
|
64
|
+
The system must not imply that reset, archive, or runtime mutation writes back into the blueprint automatically.
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
# Workshop Operator Guide
|
|
2
|
+
|
|
3
|
+
This guide explains how a facilitator runs a workshop instance without confusing reusable blueprint design with live runtime control.
|
|
4
|
+
|
|
5
|
+
## Facilitator Job
|
|
6
|
+
|
|
7
|
+
The facilitator owns:
|
|
8
|
+
|
|
9
|
+
- preparing a private workshop instance
|
|
10
|
+
- verifying participant access and facilitator auth
|
|
11
|
+
- steering the agenda through the day
|
|
12
|
+
- capturing team progress and live signals
|
|
13
|
+
- protecting the boundary between public blueprint and private event state
|
|
14
|
+
|
|
15
|
+
The facilitator does not use the live dashboard to silently rewrite the reusable workshop method.
|
|
16
|
+
|
|
17
|
+
## Before The Day
|
|
18
|
+
|
|
19
|
+
1. Start from the public blueprint in [`README.md`](README.md).
|
|
20
|
+
2. Create or prepare a private workshop instance by importing the blueprint.
|
|
21
|
+
3. Attach instance-local metadata outside the public repo:
|
|
22
|
+
- real date
|
|
23
|
+
- venue and room
|
|
24
|
+
- participant event code configuration
|
|
25
|
+
- facilitator grants
|
|
26
|
+
- facilitator-only notes
|
|
27
|
+
4. Verify participant and facilitator access paths.
|
|
28
|
+
5. Verify the active instance begins from the expected blueprint version/reference.
|
|
29
|
+
|
|
30
|
+
## During The Day
|
|
31
|
+
|
|
32
|
+
Operate the live instance through the shared runtime control surfaces:
|
|
33
|
+
|
|
34
|
+
- dashboard facilitator surface for fast visual control
|
|
35
|
+
- facilitator skill for AI-assisted operations
|
|
36
|
+
- `harness` CLI for privileged auth bootstrap and local secure credential/session handling
|
|
37
|
+
|
|
38
|
+
Facilitation priority order:
|
|
39
|
+
|
|
40
|
+
1. keep the next safe move obvious
|
|
41
|
+
2. push teams to encode context in the repo instead of explaining it orally
|
|
42
|
+
3. ask for executable verification before encouraging more autonomy
|
|
43
|
+
4. treat continuation friction as a signal to improve the harness, not as a participant failure
|
|
44
|
+
|
|
45
|
+
Typical runtime-only actions:
|
|
46
|
+
|
|
47
|
+
- move the current phase
|
|
48
|
+
- reveal or hide the continuation shift
|
|
49
|
+
- register teams and repo URLs
|
|
50
|
+
- update checkpoints and sprint notes
|
|
51
|
+
- archive or reset the instance
|
|
52
|
+
|
|
53
|
+
These actions affect only the active workshop instance unless a facilitator deliberately makes a repo edit afterward.
|
|
54
|
+
|
|
55
|
+
## After The Day
|
|
56
|
+
|
|
57
|
+
1. Archive the workshop instance.
|
|
58
|
+
2. Capture runtime learnings that may improve the reusable workshop method.
|
|
59
|
+
3. Decide which learnings are:
|
|
60
|
+
- runtime-only notes that stay private
|
|
61
|
+
- reusable improvements that belong back in the public blueprint
|
|
62
|
+
4. Publish reusable improvements through a normal GitHub edit or pull request.
|
|
63
|
+
|
|
64
|
+
## Golden Rule
|
|
65
|
+
|
|
66
|
+
If a change should help the next workshop by default, it belongs in the blueprint and must be committed deliberately.
|
|
67
|
+
|
|
68
|
+
If a change only helps the current live event, it belongs in the runtime instance and must not auto-promote back into the repo.
|
|
69
|
+
|
|
70
|
+
## What To Keep Reinforcing
|
|
71
|
+
|
|
72
|
+
- `AGENTS.md` should stay short and point outward to deeper sources of truth.
|
|
73
|
+
- The repo should contain plan, commands, verification evidence, and the next safe step.
|
|
74
|
+
- When a repeated issue appears across tables, turn it into a stronger template, challenge, reference card, or check.
|
|
@@ -0,0 +1,134 @@
|
|
|
1
|
+
# Workshop Teaching Spine
|
|
2
|
+
|
|
3
|
+
This document defines what Harness Lab should repeatedly teach, recommend, and normalize through the day.
|
|
4
|
+
|
|
5
|
+
The aim is not to add a separate rubric on top of the workshop. The aim is to make the desired operating habits the default behavior of the room, the dashboard, the workshop skill, and the facilitator prompts.
|
|
6
|
+
|
|
7
|
+
## Core Thesis
|
|
8
|
+
|
|
9
|
+
Participants are not here to learn "how to prompt better."
|
|
10
|
+
|
|
11
|
+
They are here to learn how to build a repository and workflow that an AI coding agent and another team can actually continue. The engineer's role shifts upward:
|
|
12
|
+
|
|
13
|
+
- humans steer
|
|
14
|
+
- agents execute
|
|
15
|
+
- the repo carries context
|
|
16
|
+
- verification carries trust
|
|
17
|
+
|
|
18
|
+
## Five Habits To Install
|
|
19
|
+
|
|
20
|
+
### 1. Map before motion
|
|
21
|
+
|
|
22
|
+
Teach:
|
|
23
|
+
- start by making the repo navigable
|
|
24
|
+
- use `AGENTS.md` as a short map to the important files, rules, and next steps
|
|
25
|
+
|
|
26
|
+
What to say:
|
|
27
|
+
- "Než začnete generovat feature, udělejte z repa místo, kde se dá orientovat."
|
|
28
|
+
|
|
29
|
+
Adoption signal:
|
|
30
|
+
- the team has a short `AGENTS.md`, clear entry points, and an explicit next safe step
|
|
31
|
+
|
|
32
|
+
### 2. If it is not in the repo, it does not exist
|
|
33
|
+
|
|
34
|
+
Teach:
|
|
35
|
+
- decisions, constraints, and working rules belong in tracked artifacts
|
|
36
|
+
- oral handoff, chat memory, and facilitator memory are not durable context
|
|
37
|
+
|
|
38
|
+
What to say:
|
|
39
|
+
- "To, co má přežít vás i context window, musí být dohledatelné v repu."
|
|
40
|
+
|
|
41
|
+
Adoption signal:
|
|
42
|
+
- new assumptions become docs, plan updates, runbooks, or tests instead of staying in chat
|
|
43
|
+
|
|
44
|
+
### 3. Verification is the trust boundary
|
|
45
|
+
|
|
46
|
+
Teach:
|
|
47
|
+
- the more autonomy the agent gets, the stronger the verification loop must become
|
|
48
|
+
- use the smallest useful test, tracer bullet, browser regression, or check
|
|
49
|
+
|
|
50
|
+
What to say:
|
|
51
|
+
- "Jakmile agent pracuje samostatněji, nestačí důvěra. Potřebujete důkaz."
|
|
52
|
+
|
|
53
|
+
Adoption signal:
|
|
54
|
+
- meaningful work has executable evidence attached to it
|
|
55
|
+
|
|
56
|
+
### 4. Boundaries create speed
|
|
57
|
+
|
|
58
|
+
Teach:
|
|
59
|
+
- simple architecture rules and explicit constraints help agents move faster with less drift
|
|
60
|
+
- prefer boring, legible structure over clever opacity
|
|
61
|
+
|
|
62
|
+
What to say:
|
|
63
|
+
- "Mantinely nejsou brzda. S agentem jsou to koleje."
|
|
64
|
+
|
|
65
|
+
Adoption signal:
|
|
66
|
+
- the repo names boundaries, commands, and done criteria clearly enough that a new team can act without guessing
|
|
67
|
+
|
|
68
|
+
### 5. Cleanup is part of build
|
|
69
|
+
|
|
70
|
+
Teach:
|
|
71
|
+
- drift compounds quickly in agent-heavy workflows
|
|
72
|
+
- repeated review comments should become templates, checks, or reusable guidance
|
|
73
|
+
|
|
74
|
+
What to say:
|
|
75
|
+
- "Když vás něco bolí podruhé, nemá to zůstat jen jako připomínka v hlavě."
|
|
76
|
+
|
|
77
|
+
Adoption signal:
|
|
78
|
+
- teams stop to simplify, document, or encode a recurring rule before moving on
|
|
79
|
+
|
|
80
|
+
## Phase-By-Phase Teaching Moves
|
|
81
|
+
|
|
82
|
+
### Opening and framing
|
|
83
|
+
|
|
84
|
+
Teach:
|
|
85
|
+
- the workshop is about operating systems for agent work, not prompt theatre
|
|
86
|
+
- the real output is a repo that can speak for itself
|
|
87
|
+
|
|
88
|
+
Facilitator line:
|
|
89
|
+
- "Dnes nebudeme soutěžit v promptování. Budeme stavět pracovní systém, který přežije handoff."
|
|
90
|
+
|
|
91
|
+
### Context is King talk
|
|
92
|
+
|
|
93
|
+
Teach:
|
|
94
|
+
- progressive disclosure beats giant prompts
|
|
95
|
+
- `AGENTS.md` should be a map, not an encyclopedia
|
|
96
|
+
- repository knowledge should become the system of record
|
|
97
|
+
|
|
98
|
+
Demonstrate:
|
|
99
|
+
- a weak task with missing constraints
|
|
100
|
+
- a stronger task with goal, context, constraints, and done criteria
|
|
101
|
+
- the difference between a giant blob and a layered map
|
|
102
|
+
|
|
103
|
+
### Build Phase 1
|
|
104
|
+
|
|
105
|
+
Teach:
|
|
106
|
+
- before lunch, teams should establish the operating surface that makes later autonomy safe
|
|
107
|
+
|
|
108
|
+
Push teams toward:
|
|
109
|
+
- short `AGENTS.md`
|
|
110
|
+
- plan or tracked implementation path
|
|
111
|
+
- build/test commands
|
|
112
|
+
- one executable verification loop
|
|
113
|
+
- one reviewed output
|
|
114
|
+
|
|
115
|
+
### Continuation shift
|
|
116
|
+
|
|
117
|
+
Teach:
|
|
118
|
+
- continuation is the real exam
|
|
119
|
+
- the receiving team should diagnose before editing
|
|
120
|
+
|
|
121
|
+
Push teams toward:
|
|
122
|
+
- reading `README`, `AGENTS.md`, and the current plan first
|
|
123
|
+
- writing what helped, what is missing, what is risky, and what the next safe move is
|
|
124
|
+
|
|
125
|
+
### Reveal and reflection
|
|
126
|
+
|
|
127
|
+
Teach:
|
|
128
|
+
- repeated pain should become a better harness artifact
|
|
129
|
+
- the harness is part of the product, not support material around it
|
|
130
|
+
|
|
131
|
+
Push teams toward:
|
|
132
|
+
- concrete examples of what saved time
|
|
133
|
+
- concrete examples of what remained implicit
|
|
134
|
+
- one improvement they would carry back to real work next week
|
|
File without changes
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# Workshop Analyze Checklist
|
|
2
|
+
|
|
3
|
+
Když agent dělá `/workshop analyze`, měl by projít:
|
|
4
|
+
|
|
5
|
+
- existenci a kvalitu `AGENTS.md`
|
|
6
|
+
- jestli je `AGENTS.md` mapa nebo přerostlý dump
|
|
7
|
+
- jestli `AGENTS.md` říká, co číst jako první
|
|
8
|
+
- jestli `AGENTS.md` odkazuje na skutečné source-of-truth docs
|
|
9
|
+
- přítomnost build/test příkazů
|
|
10
|
+
- jestli repo rozlišuje hotové vs. rozpracované části
|
|
11
|
+
- jestli je v repu plan nebo runbook pro další tým
|
|
12
|
+
- jestli je dohledatelné, co bylo skutečně ověřeno
|
|
13
|
+
- kolik pravidel žije jen v promptu a ne v repu
|
|
14
|
+
- jak snadné by bylo pokračovat po rotaci bez ústního handoffu
|
|
15
|
+
- jestli je zřejmý další safe move
|
|
16
|
+
|
|
17
|
+
## Výstup
|
|
18
|
+
|
|
19
|
+
1. Co pomohlo pokračovat
|
|
20
|
+
2. Co chybělo
|
|
21
|
+
3. Co přidat před dalším handoffem
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
# Workshop Closing
|
|
2
|
+
|
|
3
|
+
## Úkol
|
|
4
|
+
|
|
5
|
+
Na konci dne vytvoř krátké shrnutí workshopu, které je:
|
|
6
|
+
|
|
7
|
+
- konkrétní
|
|
8
|
+
- systémové, ne osobní
|
|
9
|
+
- lehce meta: ukazuje, že agent umí shrnout práci agentů i lidí dohromady
|
|
10
|
+
|
|
11
|
+
## Vstupy
|
|
12
|
+
|
|
13
|
+
- sprint checkpoint feed z dashboardu
|
|
14
|
+
- monitoring summary nebo manuální scan
|
|
15
|
+
- W³ sticky notes nebo přepsané commitments
|
|
16
|
+
- případně poznámky z intermezz
|
|
17
|
+
|
|
18
|
+
## Výstup
|
|
19
|
+
|
|
20
|
+
1. Co pomohlo týmům pokračovat po handoffu
|
|
21
|
+
2. Co opakovaně chybělo
|
|
22
|
+
3. Jaké 2-3 principy si má místnost odnést do příštího týdne
|
|
23
|
+
4. Jedna závěrečná věta, která propojí workshop s reálnou prací v týmu
|
|
24
|
+
|
|
25
|
+
## Styl
|
|
26
|
+
|
|
27
|
+
- česky
|
|
28
|
+
- věcně
|
|
29
|
+
- bez oslavného tónu
|
|
30
|
+
- zjištění opírej o konkrétní signály z dne
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
# Workshop Commands
|
|
2
|
+
|
|
3
|
+
## Jak skill používat
|
|
4
|
+
|
|
5
|
+
- V Codexu používejte `$workshop ...`
|
|
6
|
+
- V pi načtěte `/skill:workshop` a potom si řekněte o konkrétní akci přirozeně nebo přes název commandu
|
|
7
|
+
- Skill má být nainstalovaný přímo ve vašem pracovním repu přes `harness skill install`. Nemusíte kvůli tomu klonovat Harness Lab repo.
|
|
8
|
+
- Když si nejste jistí, začněte `workshop commands` nebo `workshop reference`
|
|
9
|
+
|
|
10
|
+
## Nejkratší participant flow
|
|
11
|
+
|
|
12
|
+
1. `workshop reference`
|
|
13
|
+
2. `workshop brief`
|
|
14
|
+
3. `workshop template`
|
|
15
|
+
4. `workshop help`
|
|
16
|
+
5. `workshop resources`
|
|
17
|
+
|
|
18
|
+
## Co který command dělá
|
|
19
|
+
|
|
20
|
+
- `workshop` - kde v workshopu právě jste a co je další safe move
|
|
21
|
+
- `workshop setup` - jak se co nejrychleji rozběhnout v Codexu nebo pi
|
|
22
|
+
- `workshop brief` - zadání týmu a první ukotvení scope
|
|
23
|
+
- `workshop challenges` - challenge cards pro další posun
|
|
24
|
+
- `workshop team` - tým, repo a checkpoint
|
|
25
|
+
- `workshop reference` - krátká karta pracovních defaultů pro dnešek
|
|
26
|
+
- `workshop help` - coaching podle fáze dne nebo podle problému, na kterém jste zaseknutí
|
|
27
|
+
- `workshop template` - starter `AGENTS.md`
|
|
28
|
+
- `workshop analyze` - rychlý handoff check repa
|
|
29
|
+
- `workshop resources` - participant resource kit, learner kit a další navazující materiály
|
|
30
|
+
- `workshop follow-up` - co si odnést a co udělat 48 hodin až 1 týden po workshopu
|
|
31
|
+
- `workshop gallery` - ověřené externí docs a veřejné repozitáře pro další učení
|
|
32
|
+
- `workshop recap` - krátké uzavření nebo připomínka po workshopu
|
|
33
|
+
|
|
34
|
+
## Kdy co použít
|
|
35
|
+
|
|
36
|
+
- Když nevíte, kde začít: `workshop reference`
|
|
37
|
+
- Když je zadání rozmazané: `workshop brief`, potom `brainstorm` nebo `plan`
|
|
38
|
+
- Když repu chybí kontext: `workshop template`
|
|
39
|
+
- Když si nejste jistí workflow: `workshop commands`
|
|
40
|
+
- Když chcete materiály i po workshopu: `workshop resources`, `workshop follow-up`, `workshop gallery`
|
|
41
|
+
|
|
42
|
+
## Důležitá poznámka
|
|
43
|
+
|
|
44
|
+
`workshop` skill je garantovaný workshop default. Další workflow skills a veřejné toolkity jsou doporučené rozšíření, ne podmínka účasti.
|