@archpilotlabs/archpilot 0.2.7 → 0.2.9
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/CHANGELOG.md +48 -0
- package/README.md +2 -0
- package/dist/archpilot-cli.js +33545 -32012
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,53 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.2.9
|
|
4
|
+
|
|
5
|
+
### Added
|
|
6
|
+
|
|
7
|
+
- Added structural finding classification so architecture violations, setup gaps, and guidance are represented explicitly instead of being inferred from finding message text.
|
|
8
|
+
- Added broader same-schema tenant discriminator support for `tenant_id`, organization, workspace, account, company, and customer-based discriminator conventions.
|
|
9
|
+
|
|
10
|
+
### Improved
|
|
11
|
+
|
|
12
|
+
- Improved validation performance on large multi-module repositories, significantly reducing analysis time for dependency-heavy projects.
|
|
13
|
+
- Improved production source-scope handling so persistence, infrastructure, adapter, and provider code is analyzed where applicable without weakening test, generated, frontend, migration, or tooling exclusions.
|
|
14
|
+
- Improved governance risk accuracy for cross-module dependency findings by distinguishing contract drift from stronger public-surface violations and transitive dependency cycles.
|
|
15
|
+
- Improved tenant isolation analysis so actual tenant predicate evidence is distinguished from tenant-like fields that are only selected or projected.
|
|
16
|
+
- Improved module and component resolution for governance risk and reporting by using structured architecture identities before legacy path-based fallbacks.
|
|
17
|
+
- Improved drift and reporting identity so finding classification and score deductions remain stable even when human-readable finding messages change.
|
|
18
|
+
|
|
19
|
+
### Notes
|
|
20
|
+
|
|
21
|
+
- Isolated `AP-DEP-004` contract drift no longer automatically results in critical governance risk. `AP-DEP-005` public-surface bypass and `AP-DEP-008` transitive dependency cycles retain stronger risk treatment.
|
|
22
|
+
|
|
23
|
+
---
|
|
24
|
+
|
|
25
|
+
## 0.2.8
|
|
26
|
+
|
|
27
|
+
### Added
|
|
28
|
+
|
|
29
|
+
- Added architecture review state for repositories that evolve after initial setup.
|
|
30
|
+
- Added detection for newly discovered high-confidence architecture modules after Smart Init.
|
|
31
|
+
- Added explicit architecture model evolution support so new modules can be reviewed, marked Not Now, or accepted into the governed architecture model.
|
|
32
|
+
- Added effective analysis for high-confidence observed modules before they are accepted into `.archpilot/architecture.json`.
|
|
33
|
+
- Added AP-ARCH-012 guidance for module review state, including newly discovered, previously reviewed/not governed, governed, and declared-missing modules.
|
|
34
|
+
|
|
35
|
+
### Improved
|
|
36
|
+
|
|
37
|
+
- Improved dependency graph and module ownership analysis so newly observed modules participate in applicable architecture validation before acceptance.
|
|
38
|
+
- Improved AP-APP, AP-DQR, AP-TXN/AP-DOM, AP-AUTH/AP-TEN, and AP-API analysis for high-confidence observed modules where canonical rule semantics support module attribution.
|
|
39
|
+
- Improved architecture model review so acceptance uses the canonical model apply flow and Validate never silently rewrites `.archpilot/architecture.json`.
|
|
40
|
+
- Improved declared-missing module handling so governed modules that are no longer observed are surfaced for explicit review.
|
|
41
|
+
|
|
42
|
+
### Notes
|
|
43
|
+
|
|
44
|
+
- `architecture.json` remains the governed architecture model; `.archpilot/architecture-review-state.json` stores review memory for previously seen but not governed modules.
|
|
45
|
+
- Review status does not suppress validation. Actual AP-\* violations inside observed modules affect Architecture Health normally.
|
|
46
|
+
- New-module review guidance itself does not directly reduce Architecture Health.
|
|
47
|
+
- Contracts remain governed-only and are not fabricated for observed modules.
|
|
48
|
+
|
|
49
|
+
---
|
|
50
|
+
|
|
3
51
|
## 0.2.7
|
|
4
52
|
|
|
5
53
|
### Added
|
package/README.md
CHANGED
|
@@ -45,6 +45,8 @@ ArchPilot turns architecture into something you can actually run and verify:
|
|
|
45
45
|
- Generate architecture scores and reports
|
|
46
46
|
- Surface architecture feedback in local development, PRs, and CI
|
|
47
47
|
|
|
48
|
+
As repositories evolve, ArchPilot distinguishes governed architecture from high-confidence modules observed in the current source tree. Newly discovered modules are analyzed before governance acceptance, while adding them to `.archpilot/architecture.json` remains an explicit architecture review decision.
|
|
49
|
+
|
|
48
50
|
**No cloud scan required. Deterministic and local-first.**
|
|
49
51
|
|
|
50
52
|
ArchPilot works alongside GitHub Copilot, Claude Code, Codex, Cursor, and other AI coding tools by continuously validating architectural boundaries before architectural drift becomes technical debt.
|