archgate 0.45.3 → 0.45.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.
- checksums.yaml +4 -4
- data/README.md +7 -7
- data/lib/archgate/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5f62b56f89b8fc81b0e2b8a059356dd96c2267e34ec6610fc23520d401fe81e4
|
|
4
|
+
data.tar.gz: ee50bf5d84268fc1ae81a2e6ac4c449ac9a6a5fc1c264706a685f396c61e461e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4ad6d54298f5caee617cf72892211f3dc13b501f3f9ca6160b9a05448af8d040fc40cc6b22349f152ea780b5ec6ce9cdb6c70c51aa181e3c57f9a06684f937b5
|
|
7
|
+
data.tar.gz: bfb19c0a7e56cfcdedc23b91ce0fd5a7e5d34a642e141b932a1cf56598e209c1427d9bdc1ed1e20326999826a2b6dd81859c1ba05edba56f7283713b6aaf735b
|
data/README.md
CHANGED
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
|
|
14
14
|
---
|
|
15
15
|
|
|
16
|
-
AI agents write code fast, but they don't know your rules. Archgate turns your team's decisions into executable checks
|
|
16
|
+
AI agents write code fast, but they don't know your rules. Archgate turns your team's decisions into executable checks: a lint step for architecture, conventions, and AI output. Your agents read the rules before writing code, and `archgate check` blocks what slips through. In CI, in pre-commit hooks, and inside every major AI coding tool.
|
|
17
17
|
|
|
18
18
|
**Write an ADR once. Enforce it everywhere.**
|
|
19
19
|
|
|
@@ -21,8 +21,8 @@ AI agents write code fast, but they don't know your rules. Archgate turns your t
|
|
|
21
21
|
|
|
22
22
|
Archgate has two layers:
|
|
23
23
|
|
|
24
|
-
1. **ADRs as documents
|
|
25
|
-
2. **ADRs as rules
|
|
24
|
+
1. **ADRs as documents**: markdown files with YAML frontmatter stored in `.archgate/adrs/`. Each ADR records a decision: what was decided, why, and what to do and not do.
|
|
25
|
+
2. **ADRs as rules**: each ADR can have a companion `.rules.ts` file that exports automated checks. Archgate runs these checks against your codebase and reports violations.
|
|
26
26
|
|
|
27
27
|
```
|
|
28
28
|
.archgate/
|
|
@@ -33,7 +33,7 @@ Archgate has two layers:
|
|
|
33
33
|
└── ARCH-002-error-handling.rules.ts
|
|
34
34
|
```
|
|
35
35
|
|
|
36
|
-
When a rule is violated, `archgate check` reports the file, line, and which ADR was broken. Exit code 1 means violations
|
|
36
|
+
When a rule is violated, `archgate check` reports the file, line, and which ADR was broken. Exit code 1 means violations. Wire it into CI and it blocks merges automatically.
|
|
37
37
|
|
|
38
38
|
**The CLI is free and open source.** Writing ADRs, enforcing rules, running checks in CI, and wiring up pre-commit hooks all work without an account or subscription.
|
|
39
39
|
|
|
@@ -64,7 +64,7 @@ Each ADR can have a companion `.rules.ts` file that exports automated checks. Se
|
|
|
64
64
|
|
|
65
65
|
## Supercharge with AI plugins
|
|
66
66
|
|
|
67
|
-
> **Make your AI agent architecture-aware.** With the optional editor plugins, your AI coding agent reads ADRs before writing code, validates changes against your rules, and captures new architectural patterns back into ADRs
|
|
67
|
+
> **Make your AI agent architecture-aware.** With the optional editor plugins, your AI coding agent reads ADRs before writing code, validates changes against your rules, and captures new architectural patterns back into ADRs, automatically.
|
|
68
68
|
>
|
|
69
69
|
> Plugins are available for [**Claude Code**](https://cli.archgate.dev/guides/claude-code-plugin/) and [**Cursor**](https://cli.archgate.dev/guides/cursor-integration/).
|
|
70
70
|
>
|
|
@@ -73,11 +73,11 @@ Each ADR can have a companion `.rules.ts` file that exports automated checks. Se
|
|
|
73
73
|
> archgate init # installs the plugin automatically
|
|
74
74
|
> ```
|
|
75
75
|
>
|
|
76
|
-
> **[Get started with plugins](https://cli.archgate.dev/guides/claude-code-plugin/)
|
|
76
|
+
> **[Get started with plugins](https://cli.archgate.dev/guides/claude-code-plugin/)**. The CLI works fully without them, but plugins close the loop between decisions and code.
|
|
77
77
|
|
|
78
78
|
## Documentation
|
|
79
79
|
|
|
80
|
-
Full documentation is available at **[cli.archgate.dev](https://cli.archgate.dev)
|
|
80
|
+
Full documentation is available at **[cli.archgate.dev](https://cli.archgate.dev)**, including guides for writing ADRs, writing rules, CI integration, editor plugin setup, and the complete CLI reference.
|
|
81
81
|
|
|
82
82
|
## Contributing
|
|
83
83
|
|
data/lib/archgate/version.rb
CHANGED