Skip to content

Commit 73913d6

Browse files
committed
chore: RSR sync and mass repository update
1 parent 0e848eb commit 73913d6

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