Skip to content

Commit b1f10bb

Browse files
Peter Higginsclaude
andcommitted
Major restructure: HUF moves out
science/ — the unified front: EITT chemistry findings, HUF-IDX, PRISM, core mathematics, methodology. The work that matters now. tools/ — everything runnable in one place: pipelines, diagnostics, spectrum analyzer, shared build utilities. huf-gov/ — active governance: standards, kill tests, case studies, monitoring taxonomy. archive/ — development history preserved. No longer the main path. The framework established its future; the history is now a record. New documents from the chemistry extension: - EITT on the Chemical Simplex (four-lens results, 500k data points) - HUF Development Index (residuals as domain maturation diagnostic) - PRISM (post-residual resource allocation targets, $5.7T industry) README rewritten for three-click understanding. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 8ce113e commit b1f10bb

894 files changed

Lines changed: 29472 additions & 3349 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.editorconfig

Lines changed: 0 additions & 27 deletions
This file was deleted.

.gitignore

Lines changed: 161 additions & 136 deletions
Original file line numberDiff line numberDiff line change
@@ -1,136 +1,161 @@
1-
# Logs
2-
logs
3-
*.log
4-
npm-debug.log*
5-
yarn-debug.log*
6-
yarn-error.log*
7-
lerna-debug.log*
8-
.pnpm-debug.log*
9-
10-
# Diagnostic reports (https://nodejs.org/api/report.html)
11-
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
12-
13-
# Runtime data
14-
pids
15-
*.pid
16-
*.seed
17-
*.pid.lock
18-
19-
# Directory for instrumented libs generated by jscoverage/JSCover
20-
lib-cov
21-
22-
# Coverage directory used by tools like istanbul
23-
coverage
24-
*.lcov
25-
26-
# nyc test coverage
27-
.nyc_output
28-
29-
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
30-
.grunt
31-
32-
# Bower dependency directory (https://bower.io/)
33-
bower_components
34-
35-
# node-waf configuration
36-
.lock-wscript
37-
38-
# Compiled binary addons (https://nodejs.org/api/addons.html)
39-
build/Release
40-
41-
# Dependency directories
42-
node_modules/
43-
jspm_packages/
44-
45-
# Snowpack dependency directory (https://snowpack.dev/)
46-
web_modules/
47-
48-
# TypeScript cache
49-
*.tsbuildinfo
50-
51-
# Optional npm cache directory
52-
.npm
53-
54-
# Optional eslint cache
55-
.eslintcache
56-
57-
# Optional stylelint cache
58-
.stylelintcache
59-
60-
# Microbundle cache
61-
.rpt2_cache/
62-
.rts2_cache_cjs/
63-
.rts2_cache_es/
64-
.rts2_cache_umd/
65-
66-
# Optional REPL history
67-
.node_repl_history
68-
69-
# Output of 'npm pack'
70-
*.tgz
71-
72-
# Yarn Integrity file
73-
.yarn-integrity
74-
75-
# dotenv environment variable files
76-
.env
77-
.env.development.local
78-
.env.test.local
79-
.env.production.local
80-
.env.local
81-
82-
# parcel-bundler cache (https://parceljs.org/)
83-
.cache
84-
.parcel-cache
85-
86-
# Next.js build output
87-
.next
88-
out
89-
90-
# Nuxt.js build / generate output
91-
.nuxt
92-
dist
93-
94-
# Gatsby files
95-
.cache/
96-
# Comment in the public line in if your project uses Gatsby and not Next.js
97-
# https://nextjs.org/blog/next-9-1#public-directory-support
98-
# public
99-
100-
# vuepress build output
101-
.vuepress/dist
102-
103-
# vuepress v2.x temp and cache directory
104-
.temp
105-
.cache
106-
107-
# vitepress build output
108-
**/.vitepress/dist
109-
110-
# vitepress cache directory
111-
**/.vitepress/cache
112-
113-
# Docusaurus cache and generated files
114-
.docusaurus
115-
116-
# Serverless directories
117-
.serverless/
118-
119-
# FuseBox cache
120-
.fusebox/
121-
122-
# DynamoDB Local files
123-
.dynamodb/
124-
125-
# TernJS port file
126-
.tern-port
127-
128-
# Stores VSCode versions used for testing VSCode extensions
129-
.vscode-test
130-
131-
# yarn v2
132-
.yarn/cache
133-
.yarn/unplugged
134-
.yarn/build-state.yml
135-
.yarn/install-state.gz
136-
.pnp.*
1+
# === HUF Project Additions ===
2+
3+
# Jupyter artifacts
4+
.ipynb_checkpoints/
5+
*.ipynb_checkpoints
6+
7+
# Python bytecode
8+
__pycache__/
9+
*.pyc
10+
*.pyo
11+
12+
# OS files
13+
.DS_Store
14+
Thumbs.db
15+
desktop.ini
16+
17+
# LibreOffice lock files
18+
.~lock.*
19+
20+
# Temporary files
21+
*.tmp
22+
*~
23+
24+
# === Node.js (original template) ===
25+
26+
# Logs
27+
logs
28+
*.log
29+
npm-debug.log*
30+
yarn-debug.log*
31+
yarn-error.log*
32+
lerna-debug.log*
33+
.pnpm-debug.log*
34+
35+
# Diagnostic reports (https://nodejs.org/api/report.html)
36+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
37+
38+
# Runtime data
39+
pids
40+
*.pid
41+
*.seed
42+
*.pid.lock
43+
44+
# Directory for instrumented libs generated by jscoverage/JSCover
45+
lib-cov
46+
47+
# Coverage directory used by tools like istanbul
48+
coverage
49+
*.lcov
50+
51+
# nyc test coverage
52+
.nyc_output
53+
54+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
55+
.grunt
56+
57+
# Bower dependency directory (https://bower.io/)
58+
bower_components
59+
60+
# node-waf configuration
61+
.lock-wscript
62+
63+
# Compiled binary addons (https://nodejs.org/api/addons.html)
64+
build/Release
65+
66+
# Dependency directories
67+
node_modules/
68+
jspm_packages/
69+
70+
# Snowpack dependency directory (https://snowpack.dev/)
71+
web_modules/
72+
73+
# TypeScript cache
74+
*.tsbuildinfo
75+
76+
# Optional npm cache directory
77+
.npm
78+
79+
# Optional eslint cache
80+
.eslintcache
81+
82+
# Optional stylelint cache
83+
.stylelintcache
84+
85+
# Microbundle cache
86+
.rpt2_cache/
87+
.rts2_cache_cjs/
88+
.rts2_cache_es/
89+
.rts2_cache_umd/
90+
91+
# Optional REPL history
92+
.node_repl_history
93+
94+
# Output of 'npm pack'
95+
*.tgz
96+
97+
# Yarn Integrity file
98+
.yarn-integrity
99+
100+
# dotenv environment variable files
101+
.env
102+
.env.development.local
103+
.env.test.local
104+
.env.production.local
105+
.env.local
106+
107+
# parcel-bundler cache (https://parceljs.org/)
108+
.cache
109+
.parcel-cache
110+
111+
# Next.js build output
112+
.next
113+
out
114+
115+
# Nuxt.js build / generate output
116+
.nuxt
117+
dist
118+
119+
# Gatsby files
120+
.cache/
121+
# Comment in the public line in if your project uses Gatsby and not Next.js
122+
# https://nextjs.org/blog/next-9-1#public-directory-support
123+
# public
124+
125+
# vuepress build output
126+
.vuepress/dist
127+
128+
# vuepress v2.x temp and cache directory
129+
.temp
130+
.cache
131+
132+
# vitepress build output
133+
**/.vitepress/dist
134+
135+
# vitepress cache directory
136+
**/.vitepress/cache
137+
138+
# Docusaurus cache and generated files
139+
.docusaurus
140+
141+
# Serverless directories
142+
.serverless/
143+
144+
# FuseBox cache
145+
.fusebox/
146+
147+
# DynamoDB Local files
148+
.dynamodb/
149+
150+
# TernJS port file
151+
.tern-port
152+
153+
# Stores VSCode versions used for testing VSCode extensions
154+
.vscode-test
155+
156+
# yarn v2
157+
.yarn/cache
158+
.yarn/unplugged
159+
.yarn/build-state.yml
160+
.yarn/install-state.gz
161+
.pnp.*

.ipynb_checkpoints/Untitled-checkpoint.ipynb

Lines changed: 0 additions & 3 deletions
This file was deleted.

CITATION.cff

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ type: software
1010
authors:
1111
- family-names: Higgins
1212
given-names: Peter
13-
email: peterhiggins2016@gmail.com
13+
email: PeterHiggins@RogueWaveAudio.com
1414
date-released: "2026-03-11"
1515
version: "Phase 3"
1616
repository-code: "https://github.com/peterhiggins/HUF"

HUFv4/.~lock.PROTOTYPE_dual_column.pdf#

Lines changed: 0 additions & 1 deletion
This file was deleted.

HUFv4/HUF_CDN_Proof_v1.0.docx

Lines changed: 0 additions & 3 deletions
This file was deleted.

HUFv4/HUF_Category_Class_Structure_Tree_v1.0.docx

Lines changed: 0 additions & 3 deletions
This file was deleted.

HUFv4/HUF_Category_Class_Structure_Tree_v1.1.docx

Lines changed: 0 additions & 3 deletions
This file was deleted.

HUFv4/HUF_Category_Class_Structure_Tree_v1.2.docx

Lines changed: 0 additions & 3 deletions
This file was deleted.

HUFv4/HUF_Category_Class_Structure_Tree_v1.3.docx

Lines changed: 0 additions & 3 deletions
This file was deleted.

0 commit comments

Comments
 (0)