@harness-lab/cli 0.2.1 → 0.2.3
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 +15 -5
- package/assets/workshop-bundle/SKILL.md +306 -0
- package/assets/workshop-bundle/bundle-manifest.json +232 -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/locales/en/deck.md +38 -0
- package/assets/workshop-bundle/content/challenge-cards/print-spec.md +28 -0
- package/assets/workshop-bundle/content/czech-editorial-review-checklist.md +88 -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/locales/en/code-review-helper.md +31 -0
- package/assets/workshop-bundle/content/project-briefs/locales/en/devtoolbox-cli.md +31 -0
- package/assets/workshop-bundle/content/project-briefs/locales/en/doc-generator.md +31 -0
- package/assets/workshop-bundle/content/project-briefs/locales/en/metrics-dashboard.md +31 -0
- package/assets/workshop-bundle/content/project-briefs/locales/en/standup-bot.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 +108 -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 +143 -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/locales/en/learner-reference-gallery.md +82 -0
- package/assets/workshop-bundle/docs/locales/en/learner-resource-kit.md +126 -0
- package/assets/workshop-bundle/docs/workshop-event-context-contract.md +123 -0
- package/assets/workshop-bundle/materials/locales/en/participant-resource-kit.md +72 -0
- package/assets/workshop-bundle/materials/participant-resource-kit.md +72 -0
- package/assets/workshop-bundle/workshop-blueprint/README.md +55 -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 +426 -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/locales/en/commands.md +44 -0
- package/assets/workshop-bundle/workshop-skill/locales/en/follow-up-package.md +35 -0
- package/assets/workshop-bundle/workshop-skill/locales/en/recap.md +22 -0
- package/assets/workshop-bundle/workshop-skill/locales/en/reference.md +80 -0
- package/assets/workshop-bundle/workshop-skill/locales/en/setup.md +84 -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 +236 -0
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
# Learner Reference Gallery
|
|
2
|
+
|
|
3
|
+
This is a short list of resources for participants after the workshop.
|
|
4
|
+
|
|
5
|
+
The rule is simple:
|
|
6
|
+
- official documentation first
|
|
7
|
+
- then a few strong public repos
|
|
8
|
+
- and finally a small number of patterns directly relevant to Harness Lab
|
|
9
|
+
|
|
10
|
+
Once this page starts to look like an “awesome list,” it has become too long.
|
|
11
|
+
|
|
12
|
+
## Official documentation
|
|
13
|
+
|
|
14
|
+
- [OpenAI Codex documentation](https://developers.openai.com/codex)
|
|
15
|
+
Use this as the main source for current Codex workflows, skills, `AGENTS.md`, subagents, and security guidance.
|
|
16
|
+
|
|
17
|
+
- [OpenAI Codex best practices](https://developers.openai.com/codex/learn/best-practices)
|
|
18
|
+
The best fast entry point for using Codex as a long-term collaborator: context, `AGENTS.md`, review, verification, MCP, and automation.
|
|
19
|
+
|
|
20
|
+
- [OpenAI Codex skills documentation](https://developers.openai.com/codex/skills)
|
|
21
|
+
Useful once you want to turn repeated prompts into reusable repo-native skills.
|
|
22
|
+
|
|
23
|
+
- [OpenAI Codex plugins](https://developers.openai.com/codex/plugins)
|
|
24
|
+
Good for understanding when to use plugins and marketplace distribution in Codex instead of repo-native skills alone. In this workshop, treat plugins as an optional Codex accelerator, not as the core bootstrap.
|
|
25
|
+
|
|
26
|
+
- [OpenAI Codex build plugins](https://developers.openai.com/codex/plugins/build)
|
|
27
|
+
Useful for maintainers who want to understand the marketplace model, repo-local marketplace patterns, or bundling skills, app integrations, and MCP servers into one Codex package.
|
|
28
|
+
|
|
29
|
+
- [OpenAI Codex workflows](https://developers.openai.com/codex/workflows)
|
|
30
|
+
Good for turning workshop habits into real project workflows.
|
|
31
|
+
|
|
32
|
+
- [OpenAI: Harness engineering: leveraging Codex in an agent-first world](https://openai.com/index/harness-engineering/)
|
|
33
|
+
Useful for understanding why repo knowledge should be the system of record and why plans, review, and garbage collection belong to engineering discipline rather than bonus process.
|
|
34
|
+
|
|
35
|
+
- [Next.js AI Coding Agents](https://nextjs.org/docs/app/guides/ai-agents)
|
|
36
|
+
Important mainly for Next.js projects: it shows why agents should read version-matched framework docs instead of relying on stale model memory.
|
|
37
|
+
|
|
38
|
+
## Public repositories
|
|
39
|
+
|
|
40
|
+
- [openai/codex](https://github.com/openai/codex)
|
|
41
|
+
The official CLI repo and the best anchor for how the tool itself evolves.
|
|
42
|
+
|
|
43
|
+
- [openai/skills](https://github.com/openai/skills)
|
|
44
|
+
The official skills catalog and the best reference for what a Codex-native skill looks like.
|
|
45
|
+
|
|
46
|
+
- [openai/codex-action](https://github.com/openai/codex-action)
|
|
47
|
+
A strong example of narrow, safe automation around Codex in CI.
|
|
48
|
+
|
|
49
|
+
- [vercel-labs/skills](https://github.com/vercel-labs/skills)
|
|
50
|
+
Useful when you want skill packaging that stays portable across more than one coding agent.
|
|
51
|
+
|
|
52
|
+
- [vercel-labs/agent-skills](https://github.com/vercel-labs/agent-skills)
|
|
53
|
+
Good examples of practical, high-quality skills, especially for frontend and React work.
|
|
54
|
+
|
|
55
|
+
## Optional workflow packs
|
|
56
|
+
|
|
57
|
+
- [EveryInc/compound-engineering-plugin](https://github.com/EveryInc/compound-engineering-plugin)
|
|
58
|
+
A strong optional choice for people who want an explicit `brainstorm -> plan -> work -> review -> compound` loop. This repo supports installation for both Codex and pi, but treat it as an accelerator on top of the workshop default, not as required setup.
|
|
59
|
+
|
|
60
|
+
## Practical patterns
|
|
61
|
+
|
|
62
|
+
- Start with repo context before you start repeating the prompt.
|
|
63
|
+
In practice: first add `AGENTS.md`, build/test commands, and a concrete definition of done.
|
|
64
|
+
|
|
65
|
+
- Use skills for repeated workflows, not as one-off chat macros.
|
|
66
|
+
If the same task returns across multiple sessions or repos, it is a good skill candidate.
|
|
67
|
+
|
|
68
|
+
- Treat plugins and marketplace distribution as a Codex-specific delivery layer, not as the definition of the workshop method.
|
|
69
|
+
If something is taught as a Harness Lab default, it should still make sense outside Codex. A plugin makes sense where it genuinely adds Codex integrations or easier distribution.
|
|
70
|
+
|
|
71
|
+
- Treat tests, tracer bullets, and checklists as the trust boundary.
|
|
72
|
+
The more autonomy the agent gets, the less “I skimmed the diff quickly” is enough.
|
|
73
|
+
|
|
74
|
+
- Keep participant-facing examples smaller than backstage systems.
|
|
75
|
+
A good learner artifact is copyable and readable, not exhaustive.
|
|
76
|
+
|
|
77
|
+
## Freshness rule
|
|
78
|
+
|
|
79
|
+
Review this list:
|
|
80
|
+
- before every workshop run
|
|
81
|
+
- after a major change in Codex capabilities
|
|
82
|
+
- when a recommended repo becomes stale, noisy, or stops being the best example
|
|
@@ -0,0 +1,126 @@
|
|
|
1
|
+
# Learner Resource Kit
|
|
2
|
+
|
|
3
|
+
This page defines the participant-facing resource kit for Harness Lab.
|
|
4
|
+
|
|
5
|
+
It is the small, copyable slice of the repo that participants should take away, revisit, and reuse in their own projects.
|
|
6
|
+
|
|
7
|
+
## Core rule
|
|
8
|
+
|
|
9
|
+
The learner kit is not the full backstage harness.
|
|
10
|
+
|
|
11
|
+
It should answer:
|
|
12
|
+
- what should I copy from the workshop into my own repo?
|
|
13
|
+
- what should the agent do first?
|
|
14
|
+
- how do I make the work survive handoff?
|
|
15
|
+
- what must I verify before I trust the output?
|
|
16
|
+
|
|
17
|
+
The default participant pattern this kit should reinforce is:
|
|
18
|
+
- `workshop` for orientation
|
|
19
|
+
- `brainstorm` or `plan` before a larger cut
|
|
20
|
+
- `work` against one verifiable goal
|
|
21
|
+
- `review` before trust
|
|
22
|
+
- `compound` and cleanup for things that should survive the session
|
|
23
|
+
|
|
24
|
+
## Core learner kit
|
|
25
|
+
|
|
26
|
+
### 1. Workshop skill
|
|
27
|
+
|
|
28
|
+
Primary participant interface:
|
|
29
|
+
- [`SKILL.md`](../../../SKILL.md)
|
|
30
|
+
- [`workshop-skill/locales/en/setup.md`](../../../workshop-skill/locales/en/setup.md)
|
|
31
|
+
- [`workshop-skill/locales/en/reference.md`](../../../workshop-skill/locales/en/reference.md)
|
|
32
|
+
- [`workshop-skill/locales/en/recap.md`](../../../workshop-skill/locales/en/recap.md)
|
|
33
|
+
|
|
34
|
+
Why it belongs here:
|
|
35
|
+
- it shows how a participant-facing skill can guide setup, workflow, and verification in reviewed workshop language
|
|
36
|
+
- it is a real repo-native interface, not a workshop slide artifact
|
|
37
|
+
|
|
38
|
+
### 2. `AGENTS.md` example
|
|
39
|
+
|
|
40
|
+
Default starter:
|
|
41
|
+
- [`workshop-skill/template-agents.md`](../../../workshop-skill/template-agents.md)
|
|
42
|
+
|
|
43
|
+
Why it belongs here:
|
|
44
|
+
- it is the smallest reusable example of durable context in the repo
|
|
45
|
+
- participants can adapt it directly for their own project
|
|
46
|
+
|
|
47
|
+
### 3. Verification / review example
|
|
48
|
+
|
|
49
|
+
Default checklist:
|
|
50
|
+
- [`workshop-skill/analyze-checklist.md`](../../../workshop-skill/analyze-checklist.md)
|
|
51
|
+
|
|
52
|
+
Why it belongs here:
|
|
53
|
+
- it provides a concrete standard for “can another team continue from here?”
|
|
54
|
+
- it turns repo quality into a checklist people can actually run
|
|
55
|
+
|
|
56
|
+
### 4. Challenge cards
|
|
57
|
+
|
|
58
|
+
Recommended subset:
|
|
59
|
+
- [`content/challenge-cards/locales/en/deck.md`](../../../content/challenge-cards/locales/en/deck.md)
|
|
60
|
+
|
|
61
|
+
Use:
|
|
62
|
+
- as small interventions during the workshop
|
|
63
|
+
- as prompts for what to improve later in a real repo
|
|
64
|
+
|
|
65
|
+
### 5. Follow-up package
|
|
66
|
+
|
|
67
|
+
Post-workshop reinforcement:
|
|
68
|
+
- [`workshop-skill/locales/en/follow-up-package.md`](../../../workshop-skill/locales/en/follow-up-package.md)
|
|
69
|
+
- [`materials/locales/en/participant-resource-kit.md`](../../../materials/locales/en/participant-resource-kit.md)
|
|
70
|
+
|
|
71
|
+
Why it belongs here:
|
|
72
|
+
- it turns the workshop from a one-day event into a repeatable prompt for behavior change
|
|
73
|
+
- it provides a literal handout you can send or print without further explanation
|
|
74
|
+
|
|
75
|
+
## When to use which artifact
|
|
76
|
+
|
|
77
|
+
### During setup
|
|
78
|
+
|
|
79
|
+
Use:
|
|
80
|
+
- [`workshop-skill/locales/en/setup.md`](../../../workshop-skill/locales/en/setup.md)
|
|
81
|
+
- [`workshop-skill/locales/en/reference.md`](../../../workshop-skill/locales/en/reference.md)
|
|
82
|
+
|
|
83
|
+
### During Build Phase 1
|
|
84
|
+
|
|
85
|
+
Use:
|
|
86
|
+
- [`workshop-skill/template-agents.md`](../../../workshop-skill/template-agents.md)
|
|
87
|
+
- the `Context Engineering` cards in [`content/challenge-cards/locales/en/deck.md`](../../../content/challenge-cards/locales/en/deck.md)
|
|
88
|
+
|
|
89
|
+
### During the continuation shift
|
|
90
|
+
|
|
91
|
+
Use:
|
|
92
|
+
- [`workshop-skill/analyze-checklist.md`](../../../workshop-skill/analyze-checklist.md)
|
|
93
|
+
- the `Workflow` cards in [`content/challenge-cards/locales/en/deck.md`](../../../content/challenge-cards/locales/en/deck.md)
|
|
94
|
+
|
|
95
|
+
### After the workshop
|
|
96
|
+
|
|
97
|
+
Use:
|
|
98
|
+
- [`workshop-skill/locales/en/recap.md`](../../../workshop-skill/locales/en/recap.md)
|
|
99
|
+
- [`workshop-skill/locales/en/follow-up-package.md`](../../../workshop-skill/locales/en/follow-up-package.md)
|
|
100
|
+
- [`materials/locales/en/participant-resource-kit.md`](../../../materials/locales/en/participant-resource-kit.md)
|
|
101
|
+
- [`learner-reference-gallery.md`](learner-reference-gallery.md)
|
|
102
|
+
|
|
103
|
+
## What to carry into a real project
|
|
104
|
+
|
|
105
|
+
Participants should leave with these concrete moves:
|
|
106
|
+
|
|
107
|
+
1. Add `AGENTS.md` with:
|
|
108
|
+
- goal
|
|
109
|
+
- context
|
|
110
|
+
- constraints
|
|
111
|
+
- done when
|
|
112
|
+
2. In `context`, write what the agent should read first and which docs are the source of truth.
|
|
113
|
+
3. In `done when`, write explicit verification and the next safe move if work remains unfinished.
|
|
114
|
+
4. Add build/test commands that another team or agent can run without verbal backfilling.
|
|
115
|
+
5. Add one review or handoff checklist.
|
|
116
|
+
6. Move one durable rule from chat into the repo.
|
|
117
|
+
7. Use plan before a larger implementation and review or another check after a larger change.
|
|
118
|
+
8. If you already use an external workflow skill pack, layer it on top of this foundation instead of replacing repo-native context and verification.
|
|
119
|
+
|
|
120
|
+
## What does not belong here
|
|
121
|
+
|
|
122
|
+
The learner kit should not include the full backstage operating detail, for example:
|
|
123
|
+
- workshop-instance runbooks
|
|
124
|
+
- private runtime architecture and operations
|
|
125
|
+
- facilitator-only monitoring or control procedures
|
|
126
|
+
- maintainer-level deployment and security procedures unless they are being taught explicitly as participant skill content
|
|
@@ -0,0 +1,123 @@
|
|
|
1
|
+
# Workshop Event Context Contract
|
|
2
|
+
|
|
3
|
+
This document defines the day-one contract for participant event access across the dashboard and `workshop-skill/`.
|
|
4
|
+
|
|
5
|
+
## Auth States
|
|
6
|
+
|
|
7
|
+
### 1. Public mode
|
|
8
|
+
|
|
9
|
+
Available without event login:
|
|
10
|
+
- public participant dashboard surface
|
|
11
|
+
- public-safe dashboard content
|
|
12
|
+
- local/fallback `workshop-skill` behavior
|
|
13
|
+
- setup, reference, and bundled project brief content
|
|
14
|
+
|
|
15
|
+
Not available:
|
|
16
|
+
- real event-private participant data
|
|
17
|
+
- team repo registry
|
|
18
|
+
- live checkpoint state
|
|
19
|
+
|
|
20
|
+
### 2. Participant-authenticated mode
|
|
21
|
+
|
|
22
|
+
Unlocked by redeeming the shared event code into a short-lived participant session.
|
|
23
|
+
|
|
24
|
+
Available:
|
|
25
|
+
- authenticated core bundle
|
|
26
|
+
- on-demand participant team/runtime lookups
|
|
27
|
+
|
|
28
|
+
### 3. Facilitator mode
|
|
29
|
+
|
|
30
|
+
Separate auth path.
|
|
31
|
+
|
|
32
|
+
Available:
|
|
33
|
+
- admin surface
|
|
34
|
+
- write operations
|
|
35
|
+
- facilitator-only views and monitoring
|
|
36
|
+
- facilitator skill commands via the CLI-backed auth path
|
|
37
|
+
|
|
38
|
+
## Authenticated Core Bundle
|
|
39
|
+
|
|
40
|
+
Day-one shape:
|
|
41
|
+
|
|
42
|
+
- `event.title`
|
|
43
|
+
- `event.subtitle`
|
|
44
|
+
- `event.currentPhaseLabel`
|
|
45
|
+
- `event.dateRange`
|
|
46
|
+
- `event.city`
|
|
47
|
+
- `agenda`
|
|
48
|
+
- `briefs`
|
|
49
|
+
- `challenges`
|
|
50
|
+
- `keyLinks`
|
|
51
|
+
- `announcements`
|
|
52
|
+
|
|
53
|
+
Design rule:
|
|
54
|
+
- small enough to fetch immediately after login
|
|
55
|
+
- rich enough to make `/workshop` and the participant dashboard feel live
|
|
56
|
+
|
|
57
|
+
## On-Demand Participant Lookups
|
|
58
|
+
|
|
59
|
+
Fetched only when requested:
|
|
60
|
+
|
|
61
|
+
- `teams[].id`
|
|
62
|
+
- `teams[].name`
|
|
63
|
+
- `teams[].city`
|
|
64
|
+
- `teams[].repoUrl`
|
|
65
|
+
- `teams[].checkpoint`
|
|
66
|
+
|
|
67
|
+
These remain outside the core bundle because they are more privacy-sensitive and more volatile.
|
|
68
|
+
|
|
69
|
+
## API Endpoints
|
|
70
|
+
|
|
71
|
+
### Event access
|
|
72
|
+
|
|
73
|
+
- `POST /api/event-access/redeem`
|
|
74
|
+
- `POST /api/event-access/logout`
|
|
75
|
+
|
|
76
|
+
### Participant event context
|
|
77
|
+
|
|
78
|
+
- `GET /api/event-context/core`
|
|
79
|
+
- `GET /api/event-context/teams`
|
|
80
|
+
|
|
81
|
+
### Existing facilitator routes
|
|
82
|
+
|
|
83
|
+
Current admin/facilitator write routes remain under existing admin protection and must not be unlocked by participant auth.
|
|
84
|
+
|
|
85
|
+
## Skill Command Mapping
|
|
86
|
+
|
|
87
|
+
| Command | Scope | Notes |
|
|
88
|
+
|---------|-------|-------|
|
|
89
|
+
| `/workshop` | Public first, authenticated when available | Must state clearly whether it is using fallback/public-only data or live event context |
|
|
90
|
+
| `/workshop login` | Participant-auth bootstrap | Redeems the shared event code into a short-lived participant session |
|
|
91
|
+
| `/workshop logout` | Participant-auth teardown | Clears the active participant session |
|
|
92
|
+
| `/workshop setup` | Public | Always available |
|
|
93
|
+
| `/workshop brief` | Public first, authenticated when available | Public brief content stays available; event-specific assignment can be layered later |
|
|
94
|
+
| `/workshop challenges` | Public first, authenticated when available | Public deck stays available; live completion context can be layered later |
|
|
95
|
+
| `/workshop team` | Participant-authenticated | Repo URLs and live checkpoint state are not public by default |
|
|
96
|
+
| `/workshop help` | Public first, authenticated when available | Coaching stays useful in fallback mode |
|
|
97
|
+
| `/workshop reference` | Public | Always available |
|
|
98
|
+
| `/workshop analyze` | Public/local | Works against the participant repo even without live event access |
|
|
99
|
+
|
|
100
|
+
## Error States
|
|
101
|
+
|
|
102
|
+
- `invalid_code`
|
|
103
|
+
- `expired_code`
|
|
104
|
+
- `expired_session`
|
|
105
|
+
- `participant event access required`
|
|
106
|
+
- `fallback mode`
|
|
107
|
+
|
|
108
|
+
## Session Transport Rules
|
|
109
|
+
|
|
110
|
+
- dashboard participant sessions are stored in a server-issued HTTP-only cookie
|
|
111
|
+
- skill-side session persistence should stay minimal and prefer renewable short-lived tokens over long-lived bearer state
|
|
112
|
+
- the event code must not be reused as the live bearer credential after redemption
|
|
113
|
+
- facilitator skill auth/session handling should live in the `harness` CLI, not in arbitrary skill state
|
|
114
|
+
|
|
115
|
+
## Logging Expectations
|
|
116
|
+
|
|
117
|
+
The private workshop-instance layer should log at least:
|
|
118
|
+
|
|
119
|
+
- redemption attempts
|
|
120
|
+
- successful session creation
|
|
121
|
+
- session expiry or invalidation
|
|
122
|
+
- failed protected lookups
|
|
123
|
+
- event-code rotation events
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
# Participant Resource Kit
|
|
2
|
+
|
|
3
|
+
A short set of artifacts you can take from Harness Lab into your own project.
|
|
4
|
+
|
|
5
|
+
## 1. Start with `AGENTS.md`
|
|
6
|
+
|
|
7
|
+
Use this baseline:
|
|
8
|
+
- `goal`
|
|
9
|
+
- `context`
|
|
10
|
+
- `constraints`
|
|
11
|
+
- `done when`
|
|
12
|
+
|
|
13
|
+
Default template:
|
|
14
|
+
- [`workshop-skill/template-agents.md`](../../../workshop-skill/template-agents.md)
|
|
15
|
+
|
|
16
|
+
## 2. Add one trust anchor
|
|
17
|
+
|
|
18
|
+
Choose at least one:
|
|
19
|
+
- build/test commands
|
|
20
|
+
- a RED test
|
|
21
|
+
- a tracer bullet
|
|
22
|
+
- a review checklist
|
|
23
|
+
|
|
24
|
+
When the agent handles a larger slice of work, “I skimmed it quickly” is not enough.
|
|
25
|
+
|
|
26
|
+
Checklist for handoff:
|
|
27
|
+
- [`workshop-skill/analyze-checklist.md`](../../../workshop-skill/analyze-checklist.md)
|
|
28
|
+
|
|
29
|
+
## 3. Use a small workflow, not chaos
|
|
30
|
+
|
|
31
|
+
Recommended baseline:
|
|
32
|
+
- `workshop` for orientation and the next safe move
|
|
33
|
+
- `/brainstorm` when the scope or first slice is still unclear
|
|
34
|
+
- `/plan` before larger implementation
|
|
35
|
+
- `/work` or another narrow implementation loop once you know what you are building
|
|
36
|
+
- a test or another executable check before an important change
|
|
37
|
+
- `/review` after a larger slice of work
|
|
38
|
+
- `/compound` or a short repo-native note when a discovery makes future work cheaper
|
|
39
|
+
- small ongoing cleanup: move build/test commands, constraints, and handoff notes from chat into the repo
|
|
40
|
+
|
|
41
|
+
## 4. Move one rule from chat into the repo
|
|
42
|
+
|
|
43
|
+
Typical candidates:
|
|
44
|
+
- build/test commands
|
|
45
|
+
- safety constraints
|
|
46
|
+
- the definition of done
|
|
47
|
+
- a handoff rule
|
|
48
|
+
|
|
49
|
+
## 5. Keep UI work on a safe track
|
|
50
|
+
|
|
51
|
+
Default pattern:
|
|
52
|
+
- `agent exploration`
|
|
53
|
+
- `Playwright regression`
|
|
54
|
+
- `human review`
|
|
55
|
+
|
|
56
|
+
Do not let the model drive your normal signed-in browser by default without sandboxing and control.
|
|
57
|
+
|
|
58
|
+
## 6. What to revisit after the workshop
|
|
59
|
+
|
|
60
|
+
- [`workshop-skill/locales/en/reference.md`](../../../workshop-skill/locales/en/reference.md)
|
|
61
|
+
- [`workshop-skill/locales/en/recap.md`](../../../workshop-skill/locales/en/recap.md)
|
|
62
|
+
- [`docs/locales/en/learner-reference-gallery.md`](../../../docs/locales/en/learner-reference-gallery.md)
|
|
63
|
+
|
|
64
|
+
Note:
|
|
65
|
+
- the `workshop` skill is the guaranteed workshop default
|
|
66
|
+
- additional workflow skills and public toolkits are optional accelerators, not required setup
|
|
67
|
+
|
|
68
|
+
## Next-week challenge
|
|
69
|
+
|
|
70
|
+
1. Add `AGENTS.md` to one real project.
|
|
71
|
+
2. Move one durable rule from a prompt into the repo.
|
|
72
|
+
3. Add one review or handoff checklist.
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
# Participant Resource Kit
|
|
2
|
+
|
|
3
|
+
Krátká sada artefaktů, které si můžete odnést z Harness Lab do vlastního projektu.
|
|
4
|
+
|
|
5
|
+
## 1. Začněte `AGENTS.md`
|
|
6
|
+
|
|
7
|
+
Použijte tento základ:
|
|
8
|
+
- `goal`
|
|
9
|
+
- `context`
|
|
10
|
+
- `constraints`
|
|
11
|
+
- `done when`
|
|
12
|
+
|
|
13
|
+
Výchozí šablona:
|
|
14
|
+
- [`workshop-skill/template-agents.md`](../workshop-skill/template-agents.md)
|
|
15
|
+
|
|
16
|
+
## 2. Přidejte jeden zdroj důvěry
|
|
17
|
+
|
|
18
|
+
Vyberte si alespoň jeden:
|
|
19
|
+
- build/test příkazy
|
|
20
|
+
- RED test
|
|
21
|
+
- tracer bullet
|
|
22
|
+
- review checklist
|
|
23
|
+
|
|
24
|
+
Když agent dělá větší kus práce, nestačí „rychle jsem to projel očima“.
|
|
25
|
+
|
|
26
|
+
Checklist pro handoff:
|
|
27
|
+
- [`workshop-skill/analyze-checklist.md`](../workshop-skill/analyze-checklist.md)
|
|
28
|
+
|
|
29
|
+
## 3. Používejte malý workflow, ne chaos
|
|
30
|
+
|
|
31
|
+
Doporučený základ:
|
|
32
|
+
- `workshop` pro orientaci a další bezpečný krok
|
|
33
|
+
- `/brainstorm`, když ještě není jasný scope nebo první slice
|
|
34
|
+
- `/plan` před větší implementací
|
|
35
|
+
- `/work` nebo jiný úzký implementační loop, když už víte co stavíte
|
|
36
|
+
- test nebo jiný executable check před důležitou změnou
|
|
37
|
+
- `/review` po větším kusu práce
|
|
38
|
+
- `/compound` nebo krátká poznámka zapsaná přímo v repu, když objev udělá další práci levnější
|
|
39
|
+
- průběžný úklid: build/test příkazy, omezení a handoff poznámky přesouvejte z chatu do repa
|
|
40
|
+
|
|
41
|
+
## 4. Přesuňte jedno pravidlo z chatu do repa
|
|
42
|
+
|
|
43
|
+
Typické kandidáty:
|
|
44
|
+
- build/test příkazy
|
|
45
|
+
- bezpečnostní omezení
|
|
46
|
+
- definice hotovo
|
|
47
|
+
- pravidlo pro handoff
|
|
48
|
+
|
|
49
|
+
## 5. Pro UI práci držte bezpečný postup
|
|
50
|
+
|
|
51
|
+
Výchozí pattern:
|
|
52
|
+
- `agent exploration`
|
|
53
|
+
- `Playwright regression`
|
|
54
|
+
- `human review`
|
|
55
|
+
|
|
56
|
+
Nenechávejte model jako výchozí volbu ovládat váš běžný přihlášený browser bez sandboxu a kontroly.
|
|
57
|
+
|
|
58
|
+
## 6. Co si projít po workshopu
|
|
59
|
+
|
|
60
|
+
- [`workshop-skill/reference.md`](../workshop-skill/reference.md)
|
|
61
|
+
- [`workshop-skill/recap.md`](../workshop-skill/recap.md)
|
|
62
|
+
- [`docs/learner-reference-gallery.md`](../docs/learner-reference-gallery.md)
|
|
63
|
+
|
|
64
|
+
Poznámka:
|
|
65
|
+
- `workshop` skill je garantovaný výchozí nástroj workshopu
|
|
66
|
+
- další workflow skills a veřejné toolkity berte jako volitelné akcelerátory, ne povinný setup
|
|
67
|
+
|
|
68
|
+
## Výzva na příští týden
|
|
69
|
+
|
|
70
|
+
1. Přidejte `AGENTS.md` do jednoho reálného projektu.
|
|
71
|
+
2. Přesuňte jedno trvalé pravidlo z promptu do repa.
|
|
72
|
+
3. Přidejte jeden review nebo handoff checklist.
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
# Workshop Blueprint
|
|
2
|
+
|
|
3
|
+
This folder is the canonical public definition of how Harness Lab works.
|
|
4
|
+
|
|
5
|
+
Use it for the reusable workshop method:
|
|
6
|
+
|
|
7
|
+
- what the workshop is trying to teach
|
|
8
|
+
- how the day is structured
|
|
9
|
+
- what facilitators operate
|
|
10
|
+
- what participants use
|
|
11
|
+
- what is editable in the public repo versus only in the private runtime layer
|
|
12
|
+
|
|
13
|
+
Do not use this folder for live event state. Real dates, rooms, rosters, checkpoint data, monitoring output, and facilitator-only operations belong in the private workshop-instance layer.
|
|
14
|
+
|
|
15
|
+
## Recommended Reading Order
|
|
16
|
+
|
|
17
|
+
1. [`day-structure.md`](day-structure.md)
|
|
18
|
+
2. [`teaching-spine.md`](teaching-spine.md)
|
|
19
|
+
3. [`operator-guide.md`](operator-guide.md)
|
|
20
|
+
4. [`control-surfaces.md`](control-surfaces.md)
|
|
21
|
+
5. [`edit-boundaries.md`](edit-boundaries.md)
|
|
22
|
+
6. [`agenda.json`](agenda.json)
|
|
23
|
+
|
|
24
|
+
## Blueprint Contents
|
|
25
|
+
|
|
26
|
+
### Human-readable guidance
|
|
27
|
+
|
|
28
|
+
- [`day-structure.md`](day-structure.md)
|
|
29
|
+
Explains the workshop arc, phase goals, and what should survive handoff.
|
|
30
|
+
- [`teaching-spine.md`](teaching-spine.md)
|
|
31
|
+
Defines the habits, facilitator messages, and participant defaults the workshop should install.
|
|
32
|
+
- [`operator-guide.md`](operator-guide.md)
|
|
33
|
+
Explains how a facilitator prepares, runs, and closes a workshop.
|
|
34
|
+
- [`control-surfaces.md`](control-surfaces.md)
|
|
35
|
+
Defines participant surface, facilitator dashboard, facilitator skill, and the `harness` CLI as equal clients of one runtime model.
|
|
36
|
+
- [`edit-boundaries.md`](edit-boundaries.md)
|
|
37
|
+
Explains what changes in the public repo, what changes only in runtime, and how learnings are published back deliberately.
|
|
38
|
+
|
|
39
|
+
### Structured data
|
|
40
|
+
|
|
41
|
+
- [`agenda.json`](agenda.json)
|
|
42
|
+
Public-readable workshop agenda summary and workshop metadata.
|
|
43
|
+
|
|
44
|
+
## Related Runtime Documents
|
|
45
|
+
|
|
46
|
+
- [`harness-cli-foundation.md`](../docs/harness-cli-foundation.md)
|
|
47
|
+
|
|
48
|
+
The deeper runtime and maintainer docs such as blueprint import, publish-back flow, and workshop-instance runbooks remain part of the source repository and maintainer path. They are intentionally not part of the portable participant bundle.
|
|
49
|
+
|
|
50
|
+
For maintainers working in the source repository, the runtime-facing structured agenda sources are:
|
|
51
|
+
|
|
52
|
+
- `docs/workshop-content-language-architecture.md`
|
|
53
|
+
- `dashboard/lib/workshop-blueprint-agenda.json`
|
|
54
|
+
|
|
55
|
+
Treat those as maintainer/source-repo references, not as portable participant-bundle docs.
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 1,
|
|
3
|
+
"blueprintId": "harness-lab-core-day",
|
|
4
|
+
"title": "Harness Lab",
|
|
5
|
+
"subtitle": "Workshop operating system pro práci s AI agenty",
|
|
6
|
+
"principles": [
|
|
7
|
+
"Mapa před pohybem",
|
|
8
|
+
"Ověření je hranice důvěry",
|
|
9
|
+
"Pište tak, aby další tým mohl pokračovat"
|
|
10
|
+
],
|
|
11
|
+
"phases": [
|
|
12
|
+
{
|
|
13
|
+
"id": "opening",
|
|
14
|
+
"order": 1,
|
|
15
|
+
"label": "Úvod a naladění",
|
|
16
|
+
"startTime": "09:10",
|
|
17
|
+
"kind": "shared",
|
|
18
|
+
"goal": "Rámec dne: nejde o promptování, ale o repo a workflow, které přežijí handoff."
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
"id": "talk",
|
|
22
|
+
"order": 2,
|
|
23
|
+
"label": "Context is King",
|
|
24
|
+
"startTime": "09:40",
|
|
25
|
+
"kind": "shared",
|
|
26
|
+
"goal": "Krátký talk a porovnání přístupů. Krátká mapa v repu je silnější než prompt blob."
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"id": "build-1",
|
|
30
|
+
"order": 3,
|
|
31
|
+
"label": "Build Phase 1",
|
|
32
|
+
"startTime": "10:30",
|
|
33
|
+
"kind": "team",
|
|
34
|
+
"goal": "Nejdřív udělejte z repa operating surface: krátké AGENTS.md, plán, build/test flow, první ověření a první reviewed output."
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"id": "rotation",
|
|
38
|
+
"order": 4,
|
|
39
|
+
"label": "Rotace týmů",
|
|
40
|
+
"startTime": "13:30",
|
|
41
|
+
"kind": "team",
|
|
42
|
+
"goal": "Plný přesun lidí mezi stoly. Nejdřív čtěte a napište diagnózu, až pak měňte kód."
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"id": "reveal",
|
|
46
|
+
"order": 5,
|
|
47
|
+
"label": "Reveal a reflexe",
|
|
48
|
+
"startTime": "15:45",
|
|
49
|
+
"kind": "shared",
|
|
50
|
+
"goal": "Co pomohlo pokračovat, co chybělo, a kterou bolest teď proměníme v lepší harness."
|
|
51
|
+
}
|
|
52
|
+
],
|
|
53
|
+
"runtimeImport": {
|
|
54
|
+
"copiedIntoInstance": [
|
|
55
|
+
"title",
|
|
56
|
+
"subtitle",
|
|
57
|
+
"phases"
|
|
58
|
+
],
|
|
59
|
+
"instanceLocalOnly": [
|
|
60
|
+
"currentPhaseId",
|
|
61
|
+
"continuationRevealed",
|
|
62
|
+
"realDate",
|
|
63
|
+
"venue",
|
|
64
|
+
"room",
|
|
65
|
+
"teamRegistry",
|
|
66
|
+
"checkpoints",
|
|
67
|
+
"monitoringSnapshots"
|
|
68
|
+
]
|
|
69
|
+
}
|
|
70
|
+
}
|