aos-harness 0.8.2 → 0.8.4
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 +37 -0
- package/core/briefs/aos-education-series/brief.md +114 -0
- package/core/briefs/aos-education-series/editorial-plan.md +285 -0
- package/core/briefs/aos-education-series/prompt-pack/00-strategic-council-run-brief.md +57 -0
- package/core/briefs/aos-education-series/prompt-pack/01-aos-series-strategy-analysis.md +51 -0
- package/core/briefs/aos-education-series/prompt-pack/02-aos-brief-validation.md +37 -0
- package/core/briefs/aos-education-series/prompt-pack/03-season-architecture-prompt.md +39 -0
- package/core/briefs/aos-education-series/prompt-pack/04-post-drafting-master-prompt.md +64 -0
- package/core/briefs/aos-education-series/prompt-pack/05-channel-adaptation-prompts.md +64 -0
- package/core/briefs/aos-education-series/prompt-pack/06-post-card-template.md +51 -0
- package/core/briefs/aos-education-series/prompt-pack/07-season-1-post-cards.md +267 -0
- package/core/briefs/aos-education-series/prompt-pack/08-notebooklm-source-map.md +59 -0
- package/core/briefs/aos-education-series/prompt-pack/09-notebooklm-query-pack.md +33 -0
- package/core/briefs/aos-education-series/prompt-pack/10-notebooklm-artifact-prompts.md +76 -0
- package/core/briefs/aos-education-series/prompt-pack/README.md +65 -0
- package/core/briefs/aos-education-series/strategic-council-brief.md +57 -0
- package/core/schema/adapter.schema.json +4 -0
- package/package.json +7 -7
- package/src/adapter-config.ts +1 -0
- package/src/adapter-session.ts +55 -5
- package/src/aos-config.ts +124 -2
- package/src/commands/init.ts +2 -1
- package/src/commands/run.ts +125 -22
- package/src/config-migration.ts +37 -0
- package/src/env-scanner.ts +48 -21
- package/src/init-config-writer.ts +1 -0
- package/src/init-types.ts +6 -0
- package/src/init-wizard.ts +4 -0
package/README.md
CHANGED
|
@@ -82,6 +82,43 @@ aos create profile my-review
|
|
|
82
82
|
aos validate
|
|
83
83
|
```
|
|
84
84
|
|
|
85
|
+
### Adapter Model Selection
|
|
86
|
+
|
|
87
|
+
`aos run` resolves model settings in this order:
|
|
88
|
+
|
|
89
|
+
1. adapter-scoped settings in `.aos/config.yaml` `adapter_defaults`
|
|
90
|
+
2. legacy `.aos/adapter.yaml`
|
|
91
|
+
3. `AOS_MODEL_ECONOMY` / `AOS_MODEL_STANDARD` / `AOS_MODEL_PREMIUM`
|
|
92
|
+
4. adapter defaults
|
|
93
|
+
|
|
94
|
+
Default behavior:
|
|
95
|
+
|
|
96
|
+
- `pi` pins explicit tier models by default
|
|
97
|
+
- `codex`, `claude-code`, and `gemini` let the vendor CLI choose its default model unless you set explicit tier models
|
|
98
|
+
|
|
99
|
+
Example:
|
|
100
|
+
|
|
101
|
+
```yaml
|
|
102
|
+
api_version: aos/config/v2
|
|
103
|
+
adapters:
|
|
104
|
+
enabled: [codex, pi]
|
|
105
|
+
default: codex
|
|
106
|
+
adapter_defaults:
|
|
107
|
+
codex:
|
|
108
|
+
use_vendor_default_model: true
|
|
109
|
+
pi:
|
|
110
|
+
use_vendor_default_model: false
|
|
111
|
+
models:
|
|
112
|
+
economy: anthropic/claude-haiku-4-5
|
|
113
|
+
standard: anthropic/claude-sonnet-4-6
|
|
114
|
+
premium: anthropic/claude-opus-4-7
|
|
115
|
+
```
|
|
116
|
+
|
|
117
|
+
Claude Code note:
|
|
118
|
+
|
|
119
|
+
- `aos init` now checks `claude auth status --json`.
|
|
120
|
+
- If Claude Code is being forced through `ANTHROPIC_API_KEY`, the readiness scan will tell you. If sessions fail with `Invalid API key`, unset or refresh that key, or switch back to `claude login` auth.
|
|
121
|
+
|
|
85
122
|
## Exit Codes
|
|
86
123
|
|
|
87
124
|
| Code | Meaning |
|
|
@@ -0,0 +1,114 @@
|
|
|
1
|
+
# Brief: AOS Educational Content Series
|
|
2
|
+
|
|
3
|
+
## Feature / Vision
|
|
4
|
+
|
|
5
|
+
Create a public educational publishing series about AOS Harness, the Agentic Orchestration System behind my work. The series should introduce what AOS is, why it exists, how I use it, and how its major building blocks connect in practice: agents, profiles, domains, workflows, adapters, delegation, observability, and memory.
|
|
6
|
+
|
|
7
|
+
This is not a product launch campaign. It is a discovery, education, and information-sharing series built around real work, real system design, and real lessons from building with AI. The tone should make readers feel that they are joining a practical journey: they are learning how modern AI systems can be structured, how orchestration improves outcomes, and how they can try small pieces themselves.
|
|
8
|
+
|
|
9
|
+
The first article should give a clear overview of what AOS Harness is and set the expectation that new posts will continue every week, with the option to publish twice a week. Every post should leave the reader with:
|
|
10
|
+
|
|
11
|
+
- one clear idea they now understand better
|
|
12
|
+
- one practical takeaway or tiny action they can try
|
|
13
|
+
- one reason to come back for the next post
|
|
14
|
+
|
|
15
|
+
The publishing goal is to grow an audience around thoughtful, motivating, technically grounded writing on AI orchestration, while also documenting my own expertise and evolution as a builder using AOS Harness.
|
|
16
|
+
|
|
17
|
+
## Context
|
|
18
|
+
|
|
19
|
+
- AOS Harness is described in this repository as an "Agentic Orchestration System" that assembles specialized AI agents into deliberation and execution teams.
|
|
20
|
+
- The current repo supports two major orchestration patterns:
|
|
21
|
+
- Deliberation: multi-agent debate that produces a structured memo
|
|
22
|
+
- Execution: orchestrated workflow that produces an execution package or working implementation output
|
|
23
|
+
- The repo currently includes:
|
|
24
|
+
- 15 agent personas
|
|
25
|
+
- 8 orchestration profiles
|
|
26
|
+
- 5 domain packs
|
|
27
|
+
- 5 skill definitions
|
|
28
|
+
- adapters for Codex, Claude Code, Gemini, and Pi
|
|
29
|
+
- Important system ideas already documented in the repo include:
|
|
30
|
+
- cognitive diversity through agent roles and biases
|
|
31
|
+
- tension pairs and speaks-last structural design
|
|
32
|
+
- profiles as reusable agent assemblies
|
|
33
|
+
- domains as append-only knowledge overlays
|
|
34
|
+
- domain enforcement as real adapter-layer file and tool boundaries
|
|
35
|
+
- workflow-driven execution
|
|
36
|
+
- hierarchical delegation
|
|
37
|
+
- transcript events, replay, and event summarization
|
|
38
|
+
- persistent expertise and MemPalace-backed memory
|
|
39
|
+
- session resumption
|
|
40
|
+
- This content series should reflect what is actually in the repo today, not generic AI commentary.
|
|
41
|
+
- Primary channels are LinkedIn posts and a newsletter-style written format. The same core ideas should be reusable across both.
|
|
42
|
+
- The public-facing narrative should treat the project name as **AOS Harness** and the system concept as **AOS: Agentic Orchestration System**.
|
|
43
|
+
|
|
44
|
+
## Constraints
|
|
45
|
+
|
|
46
|
+
- Keep the writing grounded in the real architecture and terminology of this repository.
|
|
47
|
+
- Avoid inflated "AI will change everything" language. The writing should be motivating, but specific.
|
|
48
|
+
- Each post should focus on one central concept only.
|
|
49
|
+
- Each post should connect the concept to an outcome readers care about: clarity, reliability, safety, speed, structure, or learning.
|
|
50
|
+
- Each post should include a small actionable element such as:
|
|
51
|
+
- install this
|
|
52
|
+
- run this
|
|
53
|
+
- read this output
|
|
54
|
+
- compare these two profiles
|
|
55
|
+
- create this first config
|
|
56
|
+
- Each post should end with a soft bridge to the next article so the series feels continuous.
|
|
57
|
+
- The series should work for mixed audiences:
|
|
58
|
+
- curious builders new to AI orchestration
|
|
59
|
+
- developers already using AI tools but not yet orchestrating teams of agents
|
|
60
|
+
- technical leaders evaluating how to structure AI work
|
|
61
|
+
- The content should ladder from simple to advanced:
|
|
62
|
+
- what AOS is
|
|
63
|
+
- how the parts fit together
|
|
64
|
+
- how to run it
|
|
65
|
+
- how to customize it
|
|
66
|
+
- how to learn from it
|
|
67
|
+
- how to build with it
|
|
68
|
+
- Prefer a 12-week season with 2 posts per week so there is enough room to cover the system without rushing.
|
|
69
|
+
- Keep the public writing educational first, lightly invitational second, and promotional third.
|
|
70
|
+
|
|
71
|
+
## Success Criteria
|
|
72
|
+
|
|
73
|
+
- Produce a clear content strategy for a 12-week educational series about AOS Harness.
|
|
74
|
+
- Define the audience, positioning, publishing tone, and recurring structure for each post.
|
|
75
|
+
- Create a concrete topic map that covers the major system components in a logical order.
|
|
76
|
+
- Ensure the series includes dedicated coverage of:
|
|
77
|
+
- agents
|
|
78
|
+
- profiles
|
|
79
|
+
- domains
|
|
80
|
+
- workflows
|
|
81
|
+
- adapters
|
|
82
|
+
- hierarchical delegation
|
|
83
|
+
- domain enforcement
|
|
84
|
+
- transcripts and observability
|
|
85
|
+
- session replay and resumption
|
|
86
|
+
- memory and MemPalace
|
|
87
|
+
- creating custom components in the harness
|
|
88
|
+
- For each planned post, define:
|
|
89
|
+
- working title
|
|
90
|
+
- core lesson
|
|
91
|
+
- reader takeaway
|
|
92
|
+
- small hands-on prompt or action
|
|
93
|
+
- teaser for the next post
|
|
94
|
+
- Make the first post a general overview of AOS Harness and the learning journey readers are being invited into.
|
|
95
|
+
- Make the full series feel cumulative so each post builds understanding and momentum for the next one.
|
|
96
|
+
|
|
97
|
+
## Requested Deliverables
|
|
98
|
+
|
|
99
|
+
Generate a planning package that includes:
|
|
100
|
+
|
|
101
|
+
- a series positioning statement
|
|
102
|
+
- target audience segments
|
|
103
|
+
- tone and voice guidance
|
|
104
|
+
- a 12-week editorial calendar
|
|
105
|
+
- 24 post concepts with short descriptions
|
|
106
|
+
- a reusable post template for LinkedIn and newsletter formats
|
|
107
|
+
- suggestions for recurring calls to action
|
|
108
|
+
- suggestions for how to turn repo concepts into motivating educational examples
|
|
109
|
+
|
|
110
|
+
## Seed Narrative
|
|
111
|
+
|
|
112
|
+
This series should feel like an open workshop in public:
|
|
113
|
+
|
|
114
|
+
"I am building and refining AOS Harness in the open. Each article explains one part of the system, what problem it solves, how it connects to the rest of the architecture, and how you can start experimenting with the same ideas yourself. If you follow the series from the beginning, you should gradually move from curiosity about AI to a practical understanding of structured AI orchestration."
|
|
@@ -0,0 +1,285 @@
|
|
|
1
|
+
# AOS Educational Series Editorial Plan
|
|
2
|
+
|
|
3
|
+
## Purpose
|
|
4
|
+
|
|
5
|
+
This plan turns the AOS educational brief into a concrete publishing sequence for LinkedIn plus a longer-form newsletter or blog. The structure is designed to make the series cumulative, practical, and easy to convert into prompts later.
|
|
6
|
+
|
|
7
|
+
## Recommended Positioning
|
|
8
|
+
|
|
9
|
+
**Series promise:** Learn AI orchestration by following a real system in the open.
|
|
10
|
+
|
|
11
|
+
**Core message:** AOS Harness is not "more AI for the sake of AI." It is a way to structure intelligence so different agent roles, constraints, workflows, and memory systems work together deliberately.
|
|
12
|
+
|
|
13
|
+
**What makes the series worth following:**
|
|
14
|
+
|
|
15
|
+
- It is grounded in a real repo and real architecture.
|
|
16
|
+
- It teaches concepts in sequence instead of dropping isolated tips.
|
|
17
|
+
- It gives readers small actions so they can build confidence as they go.
|
|
18
|
+
- It shows AI as a system design discipline, not only as prompting.
|
|
19
|
+
|
|
20
|
+
## Audience
|
|
21
|
+
|
|
22
|
+
1. Builders who already use AI tools but want more reliable and structured results.
|
|
23
|
+
2. Engineers who want to understand multi-agent architecture without starting from theory alone.
|
|
24
|
+
3. Technical leaders exploring how AI can support planning, review, and execution work.
|
|
25
|
+
4. Curious learners who want a guided, motivating path into agentic systems.
|
|
26
|
+
|
|
27
|
+
## Publishing Cadence
|
|
28
|
+
|
|
29
|
+
- Recommended cadence: 2 posts per week
|
|
30
|
+
- Format:
|
|
31
|
+
- Post A: concept, architecture, or philosophy
|
|
32
|
+
- Post B: practical use, walkthrough, or system connection
|
|
33
|
+
- Primary channel: LinkedIn
|
|
34
|
+
- Secondary channel: newsletter or blog archive
|
|
35
|
+
|
|
36
|
+
## Recurring Post Structure
|
|
37
|
+
|
|
38
|
+
Use this structure for nearly every post:
|
|
39
|
+
|
|
40
|
+
1. Hook
|
|
41
|
+
2. One concept explained clearly
|
|
42
|
+
3. Why it matters in AOS Harness
|
|
43
|
+
4. One concrete example from the repo or workflow
|
|
44
|
+
5. One takeaway
|
|
45
|
+
6. One tiny action for the reader
|
|
46
|
+
7. One teaser for the next post
|
|
47
|
+
|
|
48
|
+
## Tone Guide
|
|
49
|
+
|
|
50
|
+
- Clear, practical, confident
|
|
51
|
+
- Educational without sounding academic
|
|
52
|
+
- Motivating without sounding inflated
|
|
53
|
+
- Open about lessons, tradeoffs, and design choices
|
|
54
|
+
- More "here is how this works" than "look how impressive this is"
|
|
55
|
+
|
|
56
|
+
## Calls To Action
|
|
57
|
+
|
|
58
|
+
Rotate soft calls to action instead of repeating the same one.
|
|
59
|
+
|
|
60
|
+
- Follow the series for the next building block.
|
|
61
|
+
- Try the command and compare the output.
|
|
62
|
+
- Read the next post before you customize your own setup.
|
|
63
|
+
- Fork the idea, even if you do not use this exact repo.
|
|
64
|
+
- Think about where this pattern applies in your own workflow.
|
|
65
|
+
|
|
66
|
+
## Season 1 Outline
|
|
67
|
+
|
|
68
|
+
### Week 1
|
|
69
|
+
|
|
70
|
+
**Post 1A**
|
|
71
|
+
- Title: What AOS Harness Is and Why I Am Writing About It in Public
|
|
72
|
+
- Core lesson: AOS Harness is an Agentic Orchestration System for structured deliberation and execution, not just a wrapper around a model.
|
|
73
|
+
- Reader takeaway: AI becomes more useful when roles, constraints, and outputs are designed intentionally.
|
|
74
|
+
- Tiny action: Read the repo README and identify the two orchestration modes: deliberation and execution.
|
|
75
|
+
- Next teaser: Next I will explain why AOS uses multiple agents instead of one smart assistant.
|
|
76
|
+
|
|
77
|
+
**Post 1B**
|
|
78
|
+
- Title: Why One AI Agent Is Not Enough for Serious Work
|
|
79
|
+
- Core lesson: AOS creates cognitive diversity through specialist agents with distinct biases, risk tolerances, and reasoning styles.
|
|
80
|
+
- Reader takeaway: Better outcomes often come from structured disagreement, not a single polished answer.
|
|
81
|
+
- Tiny action: Review the agent roster and pick the three roles you would want in a decision meeting.
|
|
82
|
+
- Next teaser: Next I will break down how agents are assembled into profiles.
|
|
83
|
+
|
|
84
|
+
### Week 2
|
|
85
|
+
|
|
86
|
+
**Post 2A**
|
|
87
|
+
- Title: Meet the AOS Agents: Bias by Design
|
|
88
|
+
- Core lesson: Agents such as Catalyst, Sentinel, Architect, and Provocateur are designed to create productive tension.
|
|
89
|
+
- Reader takeaway: Multi-agent quality depends on meaningful role design, not simply multiplying model calls.
|
|
90
|
+
- Tiny action: Compare Catalyst and Sentinel and write one sentence on why both are needed.
|
|
91
|
+
- Next teaser: Next I will show how these agents become repeatable systems through profiles.
|
|
92
|
+
|
|
93
|
+
**Post 2B**
|
|
94
|
+
- Title: Profiles: The Real Unit of Reuse in AOS
|
|
95
|
+
- Core lesson: Profiles define who participates, how they interact, and what kind of output gets produced.
|
|
96
|
+
- Reader takeaway: Reusability in orchestration comes from repeatable assemblies, not ad hoc prompting.
|
|
97
|
+
- Tiny action: Compare `strategic-council` and `cto-execution` and list what changes between them.
|
|
98
|
+
- Next teaser: Next I will show how the same system shifts from debate into execution.
|
|
99
|
+
|
|
100
|
+
### Week 3
|
|
101
|
+
|
|
102
|
+
**Post 3A**
|
|
103
|
+
- Title: Deliberation vs Execution: Two Different Ways to Use AI Teams
|
|
104
|
+
- Core lesson: AOS supports both debate-oriented sessions and workflow-driven execution packages.
|
|
105
|
+
- Reader takeaway: The right orchestration pattern depends on whether you need judgment, production, or both.
|
|
106
|
+
- Tiny action: Read the output expectations for a memo versus an execution package.
|
|
107
|
+
- Next teaser: Next I will show why the brief matters more than most people think.
|
|
108
|
+
|
|
109
|
+
**Post 3B**
|
|
110
|
+
- Title: A Better Brief Produces Better AI Work
|
|
111
|
+
- Core lesson: AOS uses structured briefs so sessions begin with clear intent, context, constraints, and success criteria.
|
|
112
|
+
- Reader takeaway: The brief is not paperwork; it is the contract that shapes the run.
|
|
113
|
+
- Tiny action: Draft a four-section brief for a problem you care about.
|
|
114
|
+
- Next teaser: Next I will explain how domains make the same agents smarter in different industries.
|
|
115
|
+
|
|
116
|
+
### Week 4
|
|
117
|
+
|
|
118
|
+
**Post 4A**
|
|
119
|
+
- Title: Domains: How AOS Learns the Language of an Industry
|
|
120
|
+
- Core lesson: Domains are append-only overlays that inject industry-specific language, heuristics, and context into the same base system.
|
|
121
|
+
- Reader takeaway: Good orchestration separates general reasoning from domain-specific context.
|
|
122
|
+
- Tiny action: Review one existing domain pack and note what it changes.
|
|
123
|
+
- Next teaser: Next I will show that domains are not only knowledge overlays, they are also safety boundaries.
|
|
124
|
+
|
|
125
|
+
**Post 4B**
|
|
126
|
+
- Title: Domain Enforcement: Real Boundaries, Not Prompt Theater
|
|
127
|
+
- Core lesson: AOS enforces file and tool permissions at the adapter layer, not only in text instructions.
|
|
128
|
+
- Reader takeaway: Reliable AI systems need actual boundaries, not just polite reminders.
|
|
129
|
+
- Tiny action: Read the domain enforcement docs and sketch the minimum file access a worker should have in your own repo.
|
|
130
|
+
- Next teaser: Next I will move from boundaries to capabilities: skills and tools.
|
|
131
|
+
|
|
132
|
+
### Week 5
|
|
133
|
+
|
|
134
|
+
**Post 5A**
|
|
135
|
+
- Title: Skills: What Happens When Agents Need More Than Conversation
|
|
136
|
+
- Core lesson: Skills let agents invoke specialized capabilities such as review, decomposition, or memory tooling in a structured way.
|
|
137
|
+
- Reader takeaway: Orchestration gets stronger when capabilities are explicit and scoped.
|
|
138
|
+
- Tiny action: Inspect the existing skills and decide which one you would want first in your own workflow.
|
|
139
|
+
- Next teaser: Next I will explain how all of this stays portable across different AI runtimes.
|
|
140
|
+
|
|
141
|
+
**Post 5B**
|
|
142
|
+
- Title: Adapters: Why AOS Works Across Codex, Claude, Gemini, and Pi
|
|
143
|
+
- Core lesson: AOS separates orchestration logic from runtime-specific integration through a 4-layer adapter contract.
|
|
144
|
+
- Reader takeaway: Portability comes from clear boundaries between system design and platform execution.
|
|
145
|
+
- Tiny action: Identify which adapter matches the CLI you already use.
|
|
146
|
+
- Next teaser: Next I will connect adapters to workflows and show how the system turns intent into deliverables.
|
|
147
|
+
|
|
148
|
+
### Week 6
|
|
149
|
+
|
|
150
|
+
**Post 6A**
|
|
151
|
+
- Title: Workflows: Turning AI Collaboration into Repeatable Delivery
|
|
152
|
+
- Core lesson: Workflows define ordered steps, review gates, and artifact handoffs so complex work can be repeated consistently.
|
|
153
|
+
- Reader takeaway: The jump from "chatting with AI" to "shipping with AI" happens through workflow design.
|
|
154
|
+
- Tiny action: Read the `cto-execution` workflow summary and identify its review gates.
|
|
155
|
+
- Next teaser: Next I will open up the execution package and show what useful output actually looks like.
|
|
156
|
+
|
|
157
|
+
**Post 6B**
|
|
158
|
+
- Title: Inside the CTO Execution Package
|
|
159
|
+
- Core lesson: AOS can generate requirements, architecture, planning, risk review, and implementation checklists in one orchestrated run.
|
|
160
|
+
- Reader takeaway: Good AI output is structured, reviewable, and ready for handoff.
|
|
161
|
+
- Tiny action: Review the sample brief and imagine how you would reuse the output in your own team.
|
|
162
|
+
- Next teaser: Next I will move from planning to implementation with dev execution.
|
|
163
|
+
|
|
164
|
+
### Week 7
|
|
165
|
+
|
|
166
|
+
**Post 7A**
|
|
167
|
+
- Title: Dev Execution: From Brief to Working Code
|
|
168
|
+
- Core lesson: Dev Execution combines planning, worker coordination, review, and test verification in one session.
|
|
169
|
+
- Reader takeaway: Orchestrated AI can move from thinking to doing if each phase is explicit.
|
|
170
|
+
- Tiny action: Read the dev-execution docs and note the four approval gates.
|
|
171
|
+
- Next teaser: Next I will show how the engineering lead and worker model actually works under the hood.
|
|
172
|
+
|
|
173
|
+
**Post 7B**
|
|
174
|
+
- Title: Hierarchical Delegation: How One Agent Becomes a Team Lead
|
|
175
|
+
- Core lesson: AOS supports lead agents that spawn scoped child agents under depth and permission limits.
|
|
176
|
+
- Reader takeaway: Delegation is powerful when authority, scope, and communication paths are controlled.
|
|
177
|
+
- Tiny action: Sketch a three-role worker tree for a feature in your own codebase.
|
|
178
|
+
- Next teaser: Next I will show how to observe all this activity instead of treating AI work as a black box.
|
|
179
|
+
|
|
180
|
+
### Week 8
|
|
181
|
+
|
|
182
|
+
**Post 8A**
|
|
183
|
+
- Title: Observability for AI Work: Why Transcript Events Matter
|
|
184
|
+
- Core lesson: AOS emits structured transcript events so sessions can be reviewed, replayed, and understood.
|
|
185
|
+
- Reader takeaway: If AI work cannot be inspected, it cannot be trusted or improved systematically.
|
|
186
|
+
- Tiny action: List the three session events you would most want to see in a dashboard.
|
|
187
|
+
- Next teaser: Next I will show how replay and summarized events turn runs into learning assets.
|
|
188
|
+
|
|
189
|
+
**Post 8B**
|
|
190
|
+
- Title: Replay, Summaries, and Learning from Past Sessions
|
|
191
|
+
- Core lesson: AOS supports replay and event summarization so sessions can be revisited without rereading raw logs.
|
|
192
|
+
- Reader takeaway: AI systems improve faster when runs become inspectable learning records.
|
|
193
|
+
- Tiny action: Read the event summarization docs and note which events are most meaningful to humans.
|
|
194
|
+
- Next teaser: Next I will move from observability into memory.
|
|
195
|
+
|
|
196
|
+
### Week 9
|
|
197
|
+
|
|
198
|
+
**Post 9A**
|
|
199
|
+
- Title: Memory in AOS: Why Context Should Survive the Session
|
|
200
|
+
- Core lesson: AOS supports pluggable memory so useful insights can carry across runs instead of resetting every time.
|
|
201
|
+
- Reader takeaway: Persistent AI systems need selective memory, not endless transcript stuffing.
|
|
202
|
+
- Tiny action: Read `.aos/memory.yaml` guidance and identify what you would want remembered from your own sessions.
|
|
203
|
+
- Next teaser: Next I will explain why MemPalace is recommended and how it fits into the system.
|
|
204
|
+
|
|
205
|
+
**Post 9B**
|
|
206
|
+
- Title: MemPalace and Institutional Memory for Agentic Systems
|
|
207
|
+
- Core lesson: MemPalace provides high-fidelity semantic recall while the orchestrator gates what gets remembered and recalled.
|
|
208
|
+
- Reader takeaway: Memory quality depends on curation and retrieval design, not only storage.
|
|
209
|
+
- Tiny action: Map the MemPalace concepts of wing, room, hall, and drawer to your own work.
|
|
210
|
+
- Next teaser: Next I will show how long-running work resumes without losing the thread.
|
|
211
|
+
|
|
212
|
+
### Week 10
|
|
213
|
+
|
|
214
|
+
**Post 10A**
|
|
215
|
+
- Title: Session Resumption: Continuing Work Without Starting Over
|
|
216
|
+
- Core lesson: AOS checkpoints sessions and rehydrates agents with filtered transcript tails and expertise snapshots.
|
|
217
|
+
- Reader takeaway: Long AI workflows need pause-and-resume mechanics just like human work does.
|
|
218
|
+
- Tiny action: Think about one AI workflow in your life that breaks because it cannot resume cleanly.
|
|
219
|
+
- Next teaser: Next I will connect memory and resumption into a bigger idea: durable AI collaboration.
|
|
220
|
+
|
|
221
|
+
**Post 10B**
|
|
222
|
+
- Title: Durable AI Collaboration Is More Than a Better Prompt
|
|
223
|
+
- Core lesson: The combination of briefs, workflows, memory, replay, and resumption creates continuity.
|
|
224
|
+
- Reader takeaway: Real AI systems need operating structure, not isolated tricks.
|
|
225
|
+
- Tiny action: Write down which layer you are missing today: role design, constraints, memory, or observability.
|
|
226
|
+
- Next teaser: Next I will show how to start customizing AOS for your own use case.
|
|
227
|
+
|
|
228
|
+
### Week 11
|
|
229
|
+
|
|
230
|
+
**Post 11A**
|
|
231
|
+
- Title: Creating Your Own Agents
|
|
232
|
+
- Core lesson: AOS agents are defined through schema, persona, heuristics, evidence standards, tensions, and prompts.
|
|
233
|
+
- Reader takeaway: Strong agent design is a product of sharp role boundaries and useful disagreement.
|
|
234
|
+
- Tiny action: Draft one custom agent with a name, bias, risk tolerance, and red line.
|
|
235
|
+
- Next teaser: Next I will show how to turn agents into profiles and domains that fit your world.
|
|
236
|
+
|
|
237
|
+
**Post 11B**
|
|
238
|
+
- Title: Creating Your Own Profiles and Domains
|
|
239
|
+
- Core lesson: Profiles and domains let you turn one-off experiments into repeatable systems for your context.
|
|
240
|
+
- Reader takeaway: The real leverage comes when your orchestration becomes reusable.
|
|
241
|
+
- Tiny action: Choose one industry or team context and outline the first domain overlay you would need.
|
|
242
|
+
- Next teaser: Next I will close the season by looking at community, extensibility, and where this can go next.
|
|
243
|
+
|
|
244
|
+
### Week 12
|
|
245
|
+
|
|
246
|
+
**Post 12A**
|
|
247
|
+
- Title: Extensibility: Registry, Community, and the Shape of an AOS Ecosystem
|
|
248
|
+
- Core lesson: AOS is structured so agents, profiles, and domains can be shared and validated consistently.
|
|
249
|
+
- Reader takeaway: A system becomes an ecosystem when its building blocks are portable and inspectable.
|
|
250
|
+
- Tiny action: Review the registry docs and imagine the first community contribution you would make.
|
|
251
|
+
- Next teaser: Next I will wrap the season with the biggest lessons from building and teaching AOS in public.
|
|
252
|
+
|
|
253
|
+
**Post 12B**
|
|
254
|
+
- Title: What This Series Taught Me About Building with AI
|
|
255
|
+
- Core lesson: The deeper lesson of AOS is that AI gets more useful when you treat it as architecture, not magic.
|
|
256
|
+
- Reader takeaway: Readers should leave the season with a mental model for structured AI work.
|
|
257
|
+
- Tiny action: Pick one idea from the season and implement it in your own process this week.
|
|
258
|
+
- Next teaser: Season 2 can move into advanced build diaries, case studies, and domain-specific orchestration.
|
|
259
|
+
|
|
260
|
+
## Reusable Prompt Inputs
|
|
261
|
+
|
|
262
|
+
When you later turn this plan into prompt inputs, keep these fields for every post:
|
|
263
|
+
|
|
264
|
+
- audience
|
|
265
|
+
- channel
|
|
266
|
+
- post title
|
|
267
|
+
- core lesson
|
|
268
|
+
- problem it solves
|
|
269
|
+
- repo concept to reference
|
|
270
|
+
- practical example
|
|
271
|
+
- takeaway
|
|
272
|
+
- tiny action
|
|
273
|
+
- teaser for next post
|
|
274
|
+
- tone notes
|
|
275
|
+
|
|
276
|
+
## Recommendation
|
|
277
|
+
|
|
278
|
+
Start with Season 1 exactly as a guided on-ramp:
|
|
279
|
+
|
|
280
|
+
- Weeks 1 to 3: orient the audience
|
|
281
|
+
- Weeks 4 to 7: explain the machinery
|
|
282
|
+
- Weeks 8 to 10: explain reliability and continuity
|
|
283
|
+
- Weeks 11 to 12: show customization and long-term vision
|
|
284
|
+
|
|
285
|
+
That sequencing gives readers early clarity, mid-series excitement, and a credible reason to keep following the work.
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
# Brief: AOS Educational Series Strategy
|
|
2
|
+
|
|
3
|
+
## Situation
|
|
4
|
+
|
|
5
|
+
I am building a public educational content series around **AOS Harness**, the Agentic Orchestration System represented in this repository. The goal is to publish consistently, likely weekly or twice weekly, across LinkedIn and a newsletter or blog format.
|
|
6
|
+
|
|
7
|
+
The series is meant to document and teach the real architecture and working ideas behind AOS Harness: agents, profiles, domains, workflows, adapters, domain enforcement, hierarchical delegation, transcripts, replay, session resumption, and memory with MemPalace. I want the series to reflect how I actually build and think with AI, not generic commentary about AI trends.
|
|
8
|
+
|
|
9
|
+
I already have:
|
|
10
|
+
|
|
11
|
+
- an execution-style planning brief at `core/briefs/aos-education-series/brief.md`
|
|
12
|
+
- an editorial outline at `core/briefs/aos-education-series/editorial-plan.md`
|
|
13
|
+
- a prompt pack for drafting, adaptation, and NotebookLM support under `core/briefs/aos-education-series/prompt-pack/`
|
|
14
|
+
|
|
15
|
+
What I need now is strategic guidance on how to shape the series so it becomes:
|
|
16
|
+
|
|
17
|
+
- educational and cumulative
|
|
18
|
+
- motivating and exciting
|
|
19
|
+
- grounded in the actual repo
|
|
20
|
+
- useful to new and intermediate builders
|
|
21
|
+
- strong enough to keep readers returning over time
|
|
22
|
+
|
|
23
|
+
## Stakes
|
|
24
|
+
|
|
25
|
+
**Upside if this is designed well**
|
|
26
|
+
|
|
27
|
+
- The series becomes a clear public learning path into AI orchestration.
|
|
28
|
+
- Readers understand AOS Harness as a real system, not just a project name.
|
|
29
|
+
- The content establishes credibility around my expertise in structuring and using AI systems.
|
|
30
|
+
- The posts create a compounding audience that can later engage with deeper tutorials, case studies, and adoption stories.
|
|
31
|
+
- The writing becomes a reusable knowledge asset for AOS, NotebookLM, and future product education.
|
|
32
|
+
|
|
33
|
+
**Downside if this is designed poorly**
|
|
34
|
+
|
|
35
|
+
- The series becomes too abstract, too technical too early, or too repetitive.
|
|
36
|
+
- Readers fail to understand how the AOS components connect together.
|
|
37
|
+
- The writing sounds like generic AI thought leadership instead of a grounded system walkthrough.
|
|
38
|
+
- I lose momentum because the series lacks a clear arc and practical production workflow.
|
|
39
|
+
- Valuable architecture in the repo remains invisible to the audience it could help.
|
|
40
|
+
|
|
41
|
+
## Constraints
|
|
42
|
+
|
|
43
|
+
- The content must stay grounded in the real AOS Harness repo and docs.
|
|
44
|
+
- The tone should be educational before promotional.
|
|
45
|
+
- Each post should teach one central idea only.
|
|
46
|
+
- The sequence must build from beginner-friendly orientation into more advanced architecture and customization topics.
|
|
47
|
+
- Every post should include a practical takeaway and a small action or reflection.
|
|
48
|
+
- The series should work across LinkedIn and a longer-form written medium.
|
|
49
|
+
- The public narrative should use **AOS Harness** as the project name and **AOS: Agentic Orchestration System** as the system concept.
|
|
50
|
+
|
|
51
|
+
## Key Question
|
|
52
|
+
|
|
53
|
+
How should I structure and position this AOS Harness educational series so it becomes a compelling long-running public journey that teaches AI orchestration clearly, builds reader momentum week by week, and turns the real architecture of the repo into useful, motivating content?
|
|
54
|
+
|
|
55
|
+
## Context Files
|
|
56
|
+
|
|
57
|
+
**Context files:** core/briefs/aos-education-series/brief.md, core/briefs/aos-education-series/editorial-plan.md, core/briefs/aos-education-series/prompt-pack/01-aos-series-strategy-analysis.md, README.md, docs/getting-started/README.md, docs/domain-enforcement/README.md, docs/hierarchical-delegation/README.md, docs/persistent-expertise/README.md, docs/session-resumption/README.md, docs/dev-execution/README.md
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
# Prompt: AOS Series Strategy Analysis
|
|
2
|
+
|
|
3
|
+
Use this prompt with an AOS deliberation profile such as `strategic-council`.
|
|
4
|
+
|
|
5
|
+
## Goal
|
|
6
|
+
|
|
7
|
+
Analyze the AOS educational brief as a content strategy problem and produce a stronger publishing strategy, sharper audience positioning, clearer sequencing, and practical guidance for turning the series into a sustained public learning journey.
|
|
8
|
+
|
|
9
|
+
## Prompt
|
|
10
|
+
|
|
11
|
+
```text
|
|
12
|
+
You are analyzing an educational publishing strategy for AOS Harness.
|
|
13
|
+
|
|
14
|
+
Use the attached brief and editorial plan as your primary context.
|
|
15
|
+
|
|
16
|
+
Your job is to evaluate the series as if it were a product and learning system:
|
|
17
|
+
|
|
18
|
+
1. Is the positioning clear and distinctive?
|
|
19
|
+
2. Is the target audience segmented correctly?
|
|
20
|
+
3. Does the sequence move from beginner-friendly topics to higher-leverage ideas in the right order?
|
|
21
|
+
4. Which topics are strongest for early audience growth?
|
|
22
|
+
5. Which topics risk being too abstract, too advanced, or too repetitive?
|
|
23
|
+
6. Where should practical examples, commands, repo walkthroughs, or mini-challenges be inserted?
|
|
24
|
+
7. What narrative arcs will keep readers returning week after week?
|
|
25
|
+
8. What should be simplified, combined, split, or moved?
|
|
26
|
+
|
|
27
|
+
Produce the output in this structure:
|
|
28
|
+
|
|
29
|
+
- Executive assessment
|
|
30
|
+
- Audience and positioning improvements
|
|
31
|
+
- Sequence improvements
|
|
32
|
+
- Early-post optimization recommendations
|
|
33
|
+
- Risks and blind spots
|
|
34
|
+
- Recommended recurring content mechanics
|
|
35
|
+
- A revised season architecture
|
|
36
|
+
- 5 high-leverage experiments for the first month
|
|
37
|
+
|
|
38
|
+
Important constraints:
|
|
39
|
+
|
|
40
|
+
- Ground your recommendations in the real AOS Harness architecture and docs
|
|
41
|
+
- Do not turn the series into generic AI thought leadership
|
|
42
|
+
- Optimize for clarity, learning progression, and reader retention
|
|
43
|
+
- Keep the advice practical enough to implement immediately
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
## Best Inputs
|
|
47
|
+
|
|
48
|
+
- [../brief.md](../brief.md)
|
|
49
|
+
- [../editorial-plan.md](../editorial-plan.md)
|
|
50
|
+
- [README.md](/Users/jkolade/sireskay/github/aos-framework/README.md)
|
|
51
|
+
- [docs/white-paper/aos-harness-features.md](/Users/jkolade/sireskay/github/aos-framework/docs/white-paper/aos-harness-features.md)
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
# Prompt: AOS Brief Validation
|
|
2
|
+
|
|
3
|
+
Use this prompt with AOS when you want the harness to critique and strengthen the brief itself before you generate content.
|
|
4
|
+
|
|
5
|
+
## Prompt
|
|
6
|
+
|
|
7
|
+
```text
|
|
8
|
+
Review this AOS educational-series brief as if it were going to drive an important multi-week execution effort.
|
|
9
|
+
|
|
10
|
+
Evaluate it on:
|
|
11
|
+
|
|
12
|
+
- clarity of goal
|
|
13
|
+
- quality of context
|
|
14
|
+
- usefulness of constraints
|
|
15
|
+
- specificity of success criteria
|
|
16
|
+
- missing assumptions
|
|
17
|
+
- hidden ambiguities
|
|
18
|
+
- execution risk
|
|
19
|
+
- narrative strength
|
|
20
|
+
|
|
21
|
+
Then do three things:
|
|
22
|
+
|
|
23
|
+
1. List the weaknesses or gaps in priority order
|
|
24
|
+
2. Rewrite the brief so it is more precise and more usable by AOS
|
|
25
|
+
3. Suggest optional context files or repo artifacts that should be attached when running the brief
|
|
26
|
+
|
|
27
|
+
Important:
|
|
28
|
+
|
|
29
|
+
- Preserve the intent of the original brief
|
|
30
|
+
- Keep the writing grounded in the AOS Harness repo
|
|
31
|
+
- Improve specificity without making the brief bloated
|
|
32
|
+
- Call out any wording that could confuse agents or produce vague outputs
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
## Output Expectation
|
|
36
|
+
|
|
37
|
+
The ideal result is a cleaner, sharper brief that can be used for repeated planning runs over time.
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
# Prompt: Season Architecture
|
|
2
|
+
|
|
3
|
+
Use this prompt when you want a stronger high-level season structure before drafting individual posts.
|
|
4
|
+
|
|
5
|
+
## Prompt
|
|
6
|
+
|
|
7
|
+
```text
|
|
8
|
+
Design Season 1 of the AOS educational publishing series as a learning architecture.
|
|
9
|
+
|
|
10
|
+
Use the attached brief and editorial plan.
|
|
11
|
+
|
|
12
|
+
Your task is to improve the season structure so it behaves like a guided curriculum and a content engine at the same time.
|
|
13
|
+
|
|
14
|
+
Define:
|
|
15
|
+
|
|
16
|
+
- the season theme
|
|
17
|
+
- the 4 major phases of the season
|
|
18
|
+
- the learning objective of each phase
|
|
19
|
+
- the emotional objective of each phase
|
|
20
|
+
- the right ratio of concept posts vs practical posts
|
|
21
|
+
- the best point to introduce harder topics like delegation, memory, and replay
|
|
22
|
+
- the ideal weekly cadence and rhythm
|
|
23
|
+
- where to place "checkpoint" recap posts or summary posts if needed
|
|
24
|
+
|
|
25
|
+
Then provide:
|
|
26
|
+
|
|
27
|
+
- a refined 12-week map
|
|
28
|
+
- reasons for the ordering
|
|
29
|
+
- top 6 posts that should receive the most writing energy
|
|
30
|
+
- 3 optional bonus posts for schedule flexibility
|
|
31
|
+
|
|
32
|
+
Constraints:
|
|
33
|
+
|
|
34
|
+
- Avoid front-loading too much complexity
|
|
35
|
+
- Make the season feel cumulative
|
|
36
|
+
- Ensure the first 3 weeks are welcoming to new readers
|
|
37
|
+
- Ensure the middle weeks deepen technical trust
|
|
38
|
+
- Ensure the last weeks move readers toward customization and adoption
|
|
39
|
+
```
|