Skip to content

Commit 3a48beb

Browse files
committed
chore: RSR sync and mass repository update
1 parent 27bdd83 commit 3a48beb

2 files changed

Lines changed: 107 additions & 6 deletions

File tree

.gitignore

Lines changed: 100 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# RSR-compliant .gitignore
12
target/
23
/target/
34
.cache/
@@ -17,3 +18,102 @@ __pycache__/
1718

1819
# Crash recovery artifacts
1920
ai-cli-crash-capture/
21+
22+
23+
# OS & Editor
24+
.DS_Store
25+
Thumbs.db
26+
*.swp
27+
*.swo
28+
*~
29+
.idea/
30+
.vscode/
31+
32+
33+
# Build
34+
/target/
35+
/_build/
36+
/build/
37+
/dist/
38+
/out/
39+
/zig-out/
40+
/zig-cache/
41+
42+
43+
# Dependencies
44+
/node_modules/
45+
/vendor/
46+
/deps/
47+
/.elixir_ls/
48+
49+
50+
# Rust
51+
52+
# Cargo.lock # Keep for binaries
53+
54+
55+
# Elixir
56+
/cover/
57+
/doc/
58+
*.ez
59+
erl_crash.dump
60+
61+
62+
# Julia
63+
*.jl.cov
64+
*.jl.mem
65+
/Manifest.toml
66+
67+
68+
# ReScript
69+
/lib/bs/
70+
/.bsb.lock
71+
72+
73+
# Python (SaltStack only)
74+
__pycache__/
75+
*.py[cod]
76+
.venv/
77+
78+
79+
# Ada/SPARK
80+
*.ali
81+
/obj/
82+
/bin/
83+
84+
85+
# Haskell
86+
/.stack-work/
87+
/dist-newstyle/
88+
89+
90+
# Chapel
91+
*.chpl.tmp.*
92+
93+
94+
# Secrets
95+
.env
96+
.env.*
97+
*.pem
98+
*.key
99+
secrets/
100+
101+
102+
# Test/Coverage
103+
/coverage/
104+
htmlcov/
105+
106+
107+
# Logs
108+
*.log
109+
/logs/
110+
111+
112+
# Machine-readable locks
113+
.machine_readable/.locks/
114+
115+
116+
# Temp
117+
/tmp/
118+
*.tmp
119+
*.bak

contractiles/k9/README.adoc

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ K9 contractiles integrate with other RSR standards:
130130
⚠️ **Never run as root unless required** +
131131
⚠️ **Sandbox external components**
132132

133-
**See:** https://github.com/hyperpolymath/k9-svc/blob/main/docs/SECURITY-BEST-PRACTICES.adoc
133+
**See:** https://github.com/hyperpolymath/standards/blob/main/k9-svc/docs/SECURITY-BEST-PRACTICES.adoc
134134

135135
== Template Files
136136

@@ -154,14 +154,15 @@ chmod +x nickel && sudo mv nickel /usr/local/bin/
154154
cargo install just
155155
156156
# Clone K9-SVC (for must shim and tooling)
157-
git clone https://github.com/hyperpolymath/k9-svc.git
157+
git clone https://github.com/hyperpolymath/standards.git
158+
# Note: K9-SVC is located in standards/k9-svc
158159
----
159160

160161
== Learn More
161162

162-
- **K9-SVC Specification:** https://github.com/hyperpolymath/k9-svc/blob/main/SPEC.adoc
163-
- **K9 User Guide:** https://github.com/hyperpolymath/k9-svc/blob/main/GUIDE.adoc
164-
- **Security Documentation:** https://github.com/hyperpolymath/k9-svc/blob/main/docs/SECURITY-FAQ.adoc
163+
- **K9-SVC Specification:** https://github.com/hyperpolymath/standards/blob/main/k9-svc/SPEC.adoc
164+
- **K9 User Guide:** https://github.com/hyperpolymath/standards/blob/main/k9-svc/GUIDE.adoc
165+
- **Security Documentation:** https://github.com/hyperpolymath/standards/blob/main/k9-svc/docs/SECURITY-FAQ.adoc
165166
- **IANA Media Type:** `application/vnd.k9+nickel`
166167

167168
== Contributing
@@ -174,4 +175,4 @@ When adding K9 contractiles to your repository:
174175
4. Sign Hunt-level components before committing
175176
5. Add K9 validation to CI/CD pipeline
176177

177-
**Questions?** Open an issue on https://github.com/hyperpolymath/k9-svc
178+
**Questions?** Open an issue on https://github.com/hyperpolymath/standards/tree/main/k9-svc

0 commit comments

Comments
 (0)