We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0829ee9 commit c8be811Copy full SHA for c8be811
1 file changed
AGENTS.md
@@ -0,0 +1,25 @@
1
+# AGENTS: pkgx
2
+
3
+Public core CLI repository for running packages.
4
5
+## Core Commands
6
7
+- `cargo fmt --all -- --check`
8
+- `cargo clippy --all-features`
9
+- `cargo test --all-features`
10
11
+## Always Do
12
13
+- Preserve CLI semantics and user-facing flags unless intentionally versioned.
14
+- Keep changes in `crates/lib` and `crates/cli` compatibility-aware.
15
+- Add tests for changed runtime behavior.
16
17
+## Ask First
18
19
+- Breaking CLI behavior changes.
20
+- Distribution/release workflow changes.
21
22
+## Never Do
23
24
+- Never skip tests on core execution path changes.
25
+- Never merge compatibility-sensitive changes without impact notes.
0 commit comments