chapterhouse 0.3.7 → 0.3.8

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.
@@ -80,7 +80,16 @@ export async function getSquadCoordinatorSystemMessage(projectRoot) {
80
80
  const teamContent = existsSync(teamMdPath)
81
81
  ? readFileSync(teamMdPath, 'utf-8')
82
82
  : '(not found — create .squad/team.md to provide project charter context)';
83
- // 3. Recent decisionslast ~4000 chars
83
+ // 3. Identity fileswhat the team is focused on and what patterns we use
84
+ const nowMdPath = `${projectRoot}/.squad/identity/now.md`;
85
+ const nowContent = existsSync(nowMdPath)
86
+ ? readFileSync(nowMdPath, 'utf-8')
87
+ : '(not found — create .squad/identity/now.md to share current focus)';
88
+ const wisdomMdPath = `${projectRoot}/.squad/identity/wisdom.md`;
89
+ const wisdomContent = existsSync(wisdomMdPath)
90
+ ? readFileSync(wisdomMdPath, 'utf-8')
91
+ : '(not found — create .squad/identity/wisdom.md to capture team patterns)';
92
+ // 4. Recent decisions — last ~4000 chars
84
93
  const decisionsMdPath = `${projectRoot}/.squad/decisions.md`;
85
94
  let decisionsContent = '(no decisions recorded yet)';
86
95
  if (existsSync(decisionsMdPath)) {
@@ -100,6 +109,14 @@ export async function getSquadCoordinatorSystemMessage(projectRoot) {
100
109
  '',
101
110
  teamContent,
102
111
  '',
112
+ '## Team Current Focus (What We\'re Doing Now)',
113
+ '',
114
+ nowContent,
115
+ '',
116
+ '## Team Wisdom (Patterns & Lessons)',
117
+ '',
118
+ wisdomContent,
119
+ '',
103
120
  '## Recent Decisions',
104
121
  '',
105
122
  decisionsContent,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "chapterhouse",
3
- "version": "0.3.7",
3
+ "version": "0.3.8",
4
4
  "description": "Chapterhouse — a team-level AI assistant for engineering teams, built on the GitHub Copilot SDK. Web UI only.",
5
5
  "bin": {
6
6
  "chapterhouse": "dist/cli.js"