msri 0.2.1__tar.gz
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.
- msri-0.2.1/.gitignore +28 -0
- msri-0.2.1/Cargo.lock +4492 -0
- msri-0.2.1/Cargo.toml +140 -0
- msri-0.2.1/LICENSE +21 -0
- msri-0.2.1/PKG-INFO +141 -0
- msri-0.2.1/README.md +130 -0
- msri-0.2.1/SECURITY.md +53 -0
- msri-0.2.1/action.yml +39 -0
- msri-0.2.1/almanac.yml +38 -0
- msri-0.2.1/build.rs +3 -0
- msri-0.2.1/diataxis.yml +2 -0
- msri-0.2.1/docker/mitm/Dockerfile +7 -0
- msri-0.2.1/docs/cli-reference.md +541 -0
- msri-0.2.1/docs/getting-started.md +220 -0
- msri-0.2.1/docs/what-is-missouri.md +193 -0
- msri-0.2.1/docs/writing-tests.md +836 -0
- msri-0.2.1/flake.lock +64 -0
- msri-0.2.1/flake.nix +141 -0
- msri-0.2.1/homebrew/missouri.rb +44 -0
- msri-0.2.1/pyproject.toml +26 -0
- msri-0.2.1/src/agent_cli.rs +240 -0
- msri-0.2.1/src/agent_eval.rs +206 -0
- msri-0.2.1/src/bin/msri.rs +24 -0
- msri-0.2.1/src/cli.rs +903 -0
- msri-0.2.1/src/compare.rs +757 -0
- msri-0.2.1/src/config.rs +843 -0
- msri-0.2.1/src/docgen.rs +662 -0
- msri-0.2.1/src/error.rs +164 -0
- msri-0.2.1/src/executor.rs +3471 -0
- msri-0.2.1/src/graph.rs +1605 -0
- msri-0.2.1/src/lib.rs +17 -0
- msri-0.2.1/src/main.rs +54 -0
- msri-0.2.1/src/mangen.rs +46 -0
- msri-0.2.1/src/paths.rs +437 -0
- msri-0.2.1/src/recorder.rs +410 -0
- msri-0.2.1/src/report.rs +401 -0
- msri-0.2.1/src/scaffold.rs +102 -0
- msri-0.2.1/src/signal.rs +81 -0
- msri-0.2.1/tests/docker_refusals.rs +42 -0
- msri-0.2.1/tests/docs_pages.rs +131 -0
- msri-0.2.1/tests/short_name_shim.rs +32 -0
- msri-0.2.1/uv.lock +7 -0
msri-0.2.1/.gitignore
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
/target
|
|
2
|
+
.flox
|
|
3
|
+
|
|
4
|
+
# Coding-agent and editor local state. Machine-specific, and it belongs
|
|
5
|
+
# to one checkout.
|
|
6
|
+
/.claude/
|
|
7
|
+
/.cursor/
|
|
8
|
+
/.aider*
|
|
9
|
+
/.gaff-state/
|
|
10
|
+
*.swp
|
|
11
|
+
*~
|
|
12
|
+
\#*\#
|
|
13
|
+
.DS_Store
|
|
14
|
+
|
|
15
|
+
# Local dependency overrides. A path override names a directory on one
|
|
16
|
+
# machine, so it exposes the account layout and breaks every other
|
|
17
|
+
# clone. Keep them here, never in Cargo.toml.
|
|
18
|
+
/.cargo/config.toml
|
|
19
|
+
/config.toml
|
|
20
|
+
|
|
21
|
+
# Nix build output.
|
|
22
|
+
/result
|
|
23
|
+
/result-*
|
|
24
|
+
|
|
25
|
+
# Generated by npm/generate.mjs at release time: one package per
|
|
26
|
+
# platform, each holding a built binary. A binary does not belong in
|
|
27
|
+
# git, and one committed by accident ships inside the crate.
|
|
28
|
+
npm/msri-*/
|