Skip to content

Commit d4ab7a0

Browse files
committed
chore: RSR sync and mass repository update
1 parent cb700b4 commit d4ab7a0

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,103 @@
1+
# RSR-compliant .gitignore
12

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