Skip to content

Commit 991cd03

Browse files
hyperpolymathclaude
andcommitted
chore: RSR compliance — fix editorconfig name, LICENSE to PMPL, create missing SCM files
- .editorconfig: Replace "RSR-template-repo" with project name - LICENSE: Replace MPL-2.0 text with PMPL-1.0-or-later - .machine_readable/STATE.scm: Create missing state file - .machine_readable/META.scm: Create missing meta file - .machine_readable/ECOSYSTEM.scm: Create missing ecosystem file Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 0088344 commit 991cd03

5 files changed

Lines changed: 194 additions & 353 deletions

File tree

.editorconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# RSR-template-repo - Editor Configuration
1+
# i-human - Editor Configuration
22
# https://editorconfig.org
33

44
root = true

.machine_readable/ECOSYSTEM.scm

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
;; SPDX-License-Identifier: PMPL-1.0-or-later
2+
;; ECOSYSTEM.scm for i-human
3+
;; Media Type: application/vnd.ecosystem+scm
4+
5+
(ecosystem
6+
(version "1.0")
7+
(name "i-human")
8+
(type "security-tool")
9+
(purpose "Digital trust and CAPTCHA risk audit tool")
10+
(position-in-ecosystem
11+
(domain "security-tools")
12+
(role "CAPTCHA risk profiling and signal diagnosis")
13+
(maturity "alpha"))
14+
(related-projects
15+
((name . "hyperpolymath ecosystem")
16+
(relationship . part-of)
17+
(nature . "Security and privacy tools"))))

.machine_readable/META.scm

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
;; SPDX-License-Identifier: PMPL-1.0-or-later
2+
;; META.scm for i-human
3+
4+
(define meta
5+
'((project-meta
6+
(name . "i-human")
7+
(tagline . "Digital trust and CAPTCHA risk audit tool")
8+
(category . "security-tools")
9+
(license . "PMPL-1.0-or-later")
10+
(inception-date . "2026")
11+
(repository . "https://github.com/hyperpolymath/i-human"))
12+
(development-practices
13+
(versioning-scheme . "SemVer 2.0.0")
14+
(contribution-model . "RSR-compliant"))))

.machine_readable/STATE.scm

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
;; SPDX-License-Identifier: PMPL-1.0-or-later
2+
;; STATE.scm for i-human
3+
4+
(define state
5+
'((metadata
6+
(project . "i-human")
7+
(version . "0.1.0")
8+
(updated . "2026-03-14")
9+
(maintainers . ("Jonathan D.A. Jewell <j.d.a.jewell@open.ac.uk>")))
10+
(project-context
11+
(description . "Digital trust and CAPTCHA risk audit tool")
12+
(domain . "security-tools")
13+
(languages . ("Rust" "ReScript"))
14+
(primary-purpose . "Measures CAPTCHA risk profile and provides actionable fixes"))
15+
(current-position
16+
(phase . "alpha")
17+
(overall-completion . 30))
18+
(blockers-and-issues
19+
(known-issues . ()))
20+
(critical-next-actions
21+
(immediate . ("Implement core risk scoring and signal detection")))))

0 commit comments

Comments
 (0)