@weave-tools/weave-it 0.1.1 → 0.1.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 +39 -1
- package/dist/cli.d.ts +2 -1
- package/dist/cli.js +525 -213
- package/dist/cli.js.map +1 -1
- package/package.json +1 -1
- package/templates/skills/weave-architect/SKILL.md +17 -1
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: weave-architect
|
|
3
3
|
description: Read-only thinking partner for active Weave architecture work. Use when the user wants engineering architecture, technical design, implementation strategy, tradeoff analysis, risk review, or a deep dive into an existing architecture facet.
|
|
4
|
-
last_changed_in: 0.1.
|
|
4
|
+
last_changed_in: 0.1.3
|
|
5
5
|
---
|
|
6
6
|
|
|
7
7
|
# Weave Architect
|
|
@@ -39,6 +39,7 @@ Do not write repo-tracked artifacts directly. Produce the plan, decisions, quest
|
|
|
39
39
|
- Treat `weave-architect` as entering or resuming the architecture lane for the active change.
|
|
40
40
|
- Treat `prd.md` as the preferred product contract when it exists and is useful, but do not require it before architecture thinking.
|
|
41
41
|
- Read enough code, docs, ADRs, knowledge specs, and existing Weave artifacts to understand current implementation patterns before recommending design.
|
|
42
|
+
- Read `.weave/architecture-considerations.md` when present and use it as user-owned team architecture guidance.
|
|
42
43
|
- In workspace mode, inspect registered repo folders as implementation locations inside one shared change context. In repo mode, keep the resolved repo context as the boundary.
|
|
43
44
|
- Support both legacy `wiki/changes/<change-id>/architecture.md` and folder-mode `wiki/changes/<change-id>/architecture/index.md` plus `architecture/*.md` facets.
|
|
44
45
|
- If both `architecture.md` and `architecture/` exist, call out the conflict and ask the user to resolve it with `weave-clarify` or `weave-capture` before relying on either as canonical.
|
|
@@ -126,6 +127,7 @@ wiki/changes/<change-id>/architecture/*.md
|
|
|
126
127
|
wiki/changes/<change-id>/sessions/*-architecture.md
|
|
127
128
|
wiki/changes/<change-id>/knowledge-delta.md
|
|
128
129
|
wiki/changes/<change-id>/tasks.md
|
|
130
|
+
.weave/architecture-considerations.md
|
|
129
131
|
```
|
|
130
132
|
|
|
131
133
|
Architecture shape rules:
|
|
@@ -137,6 +139,19 @@ Architecture shape rules:
|
|
|
137
139
|
|
|
138
140
|
For session notes, prefer the latest `## Next Resume Point`, unresolved decisions, and explicit user preferences. If session notes contain `facets: [...]` frontmatter, use it to find relevant facet discussions, but do not require it.
|
|
139
141
|
|
|
142
|
+
# Team Architecture Considerations
|
|
143
|
+
|
|
144
|
+
If `.weave/architecture-considerations.md` exists, read it before making architecture recommendations.
|
|
145
|
+
|
|
146
|
+
Treat this file as user-owned advisory guidance:
|
|
147
|
+
|
|
148
|
+
- Do not edit it.
|
|
149
|
+
- Do not quote it exhaustively.
|
|
150
|
+
- Apply relevant guidance silently while reasoning.
|
|
151
|
+
- Surface only constraints, conflicts, or risks that materially affect the design.
|
|
152
|
+
- Do not treat examples as mandatory unless the file says they are.
|
|
153
|
+
- If it conflicts with PRD context, ADRs, existing architecture, code reality, or explicit user instructions, call out the conflict and ask which source should be authoritative.
|
|
154
|
+
|
|
140
155
|
# Codebase And Docs Context
|
|
141
156
|
|
|
142
157
|
Inspect only context that can materially affect the architecture:
|
|
@@ -158,6 +173,7 @@ For relevant repos, prioritize reading:
|
|
|
158
173
|
README.md
|
|
159
174
|
CONTEXT.md
|
|
160
175
|
CONTEXT-MAP.md
|
|
176
|
+
.weave/architecture-considerations.md
|
|
161
177
|
docs/**
|
|
162
178
|
docs/adr/**
|
|
163
179
|
adr/**
|