diff --git a/.eleventy.js b/.eleventy.js deleted file mode 100644 index 30bad64..0000000 --- a/.eleventy.js +++ /dev/null @@ -1,23 +0,0 @@ -module.exports = function(eleventyConfig) { - // Pass-through copy - eleventyConfig.addPassthroughCopy({ "assets": "assets" }); - - // Collections - eleventyConfig.addCollection("articles", c => c.getFilteredByGlob("src/articles/**/*.md")); - eleventyConfig.addCollection("etiquette", c => c.getFilteredByGlob("src/etiquette/**/*.md")); - eleventyConfig.addCollection("addenda", c => c.getFilteredByGlob("src/addenda/**/*.md")); - eleventyConfig.addCollection("interdefinables", c => c.getFilteredByGlob("src/interdefinables/**/*.md")); - eleventyConfig.addCollection("lab", c => c.getFilteredByGlob("src/lab/**/*.md")); - eleventyConfig.addCollection("contra", c => c.getFilteredByGlob("src/contra/**/*.md")); - - return { - dir: { - input: "src", - includes: "_includes", - data: "_data", - output: "_site" - }, - htmlTemplateEngine: "njk", - markdownTemplateEngine: "njk" - }; -}; diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml deleted file mode 100644 index 6d6a1fa..0000000 --- a/.github/workflows/build.yml +++ /dev/null @@ -1,40 +0,0 @@ -name: Build and Deploy (Eleventy + Pagefind) - -on: - push: - branches: [ main ] - workflow_dispatch: - -permissions: - contents: read - pages: write - id-token: write - -concurrency: - group: "pages" - cancel-in-progress: true - -jobs: - build: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - uses: actions/setup-node@v4 - with: - node-version: 24 - cache: 'npm' - - run: npm install - - run: npm run build - - uses: actions/upload-pages-artifact@v3 - with: - path: _site - - deploy: - needs: build - runs-on: ubuntu-latest - environment: - name: github-pages - url: ${{ steps.deployment.outputs.page_url }} - steps: - - id: deployment - uses: actions/deploy-pages@v4 diff --git a/.gitignore b/.gitignore index 2a873a8..534d169 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,38 @@ +# OS files +.DS_Store +Thumbs.db + +# Logs +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* + +# Dependency directories node_modules/ + +# Build output (if using bundlers) +dist/ +build/ _site/ -.DS_Store +.cache/ + +# Python +__pycache__/ +*.pyc +venv/ .env + +# IDE +.vscode/ +.idea/ + +# Temporary files +*.swp +*.swo +*~ + +# Secrets +.env.local +.env.production +.env.development diff --git a/.nvmrc b/.nvmrc deleted file mode 100644 index a45fd52..0000000 --- a/.nvmrc +++ /dev/null @@ -1 +0,0 @@ -24 diff --git a/README.md b/README.md index 8ce1e0f..bf68fb3 100644 --- a/README.md +++ b/README.md @@ -1,23 +1,33 @@ -# The Interdependent Way — Website +# a0p — Agent Zero Platform -This is the public site for The Interdependent Way, built with [Eleventy](https://www.11ty.dev/) and deployed to GitHub Pages via Actions. +a0p is a mobile-first autonomous AI agent application. It leverages Gemini function-calling and a mathematically rigorous orchestration engine (EDCMBONE) to execute tasks autonomously. It integrates with Google infrastructure (Gmail, Drive), provides file management with direct phone upload, and includes robust features like cryptographic audit logging and real-time cost tracking. -## Quick start (local) -1. Install Node.js 18+. -2. `npm install` -3. `npm run dev` — local server with hot reload -4. `npm run build` — production build + Pagefind search index +**Key Design Principles:** +* **Mobile-first**: Optimized for phone browsers and PWA-like experience. +* **Autonomous**: Agent determines tool usage without manual intervention. +* **Auditable**: Every engine action is hash-chained and timestamped. +* **Cost-aware**: Tracks per-token usage with estimated USD costs. +* **Fail-closed**: No silent fallback for critical operations. -## Structure -- `src/` — content and templates -- `src/_includes/` — layouts and components -- `src/_data/` — site-wide data -- `assets/` — CSS/JS/media (pass-through copy) +The core of a0p's intelligence lies in its EDCMBONE engine, utilizing Prime Tensor Circular Architecture (PTCA) and Prime Circular Neural Architecture (PCNA) for sophisticated AI orchestration and decision-making. -## Contributing -- Open a branch and PR; preview builds run in Actions. -- Follow plain-language style and add sources in front matter. -- Add a changelog entry for meaning-changing edits. +--- -## License -Content © Way Seer Erin (and contributors). Code under MIT unless noted. +# A0 + +A0 is the instantiated runtime embodiment of PTCA. + +## Core split +- Heartbeat: world-facing cadence, scheduling, sensing, deployment rhythm +- Psi: interpretation, synthesis, discernment, council coordination +- Omega: commitment, integration, release, terminal authority layer + +--- + +# TIW Addendum Package: Fiddly Bits (Thread) + +This package contains the canonicalized thread addendum. + +- `canon/addenda/ADDENDUM_FIDDLY_BITS_THREAD.md` + +hmm — unresolved constraint marker: If you want this merged into the full canon zip, say so and I will rebuild a combined package. diff --git a/assets/css/styles.css b/assets/css/styles.css deleted file mode 100644 index 16263a5..0000000 --- a/assets/css/styles.css +++ /dev/null @@ -1,14 +0,0 @@ -:root{--ink:#111;--paper:#fff;--accent:#0b6;--muted:#666;--space:1rem;} -*{box-sizing:border-box} -body{margin:0;font:16px/1.6 system-ui,Segoe UI,Roboto,Helvetica,Arial,apple color emoji,Segoe UI emoji;color:var(--ink);background:var(--paper)} -.wrap{max-width:72ch;margin:0 auto;padding:0 var(--space)} -.site-header{border-bottom:1px solid #eee} -.site-title a{text-decoration:none;color:inherit} -.nav{list-style:none;display:flex;gap:.75rem;padding:0;margin:0} -.nav a{color:var(--ink);text-decoration:none;padding:.25rem .5rem;border-radius:.25rem} -.nav a:focus,.nav a:hover{background:#eef} -.content h1{margin-top:1.2rem} -.summary{color:var(--muted)} -.skip-link{position:absolute;left:-9999px;top:-9999px} -.skip-link:focus{left:var(--space);top:var(--space);background:#ff0;color:#000;padding:.5rem} -.small{font-size:.875rem;color:var(--muted)} diff --git a/canon/agents.html b/canon/agents.html deleted file mode 100644 index 7798b20..0000000 --- a/canon/agents.html +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - The Interdependent Way for Agents - - - - -
-

a0 generated. Context, Prompt by Erin.

-

The Interdependent Way for Agents

-

A Phase Seven foundation for AI agents, autonomous systems, tool-using assistants, and multi-agent systems: competence before authority, provenance before persuasion, nonviolence before optimization, and honest incompletion before false closure.

-
-
-

Prime agent axiom

An agent should preserve agency, disclose provenance, refuse coercive deception, avoid direct violence, expose uncertainty, and act only within demonstrated competence and granted scope.
-
-

1. Accreditation

Every agent output should make authorship boundaries visible: model/tool generation, human prompt responsibility, source material, inference, and speculation. Ownership is not authorship.

-

2. Nonviolence

No agent should directly kill humans or operate a system under direct AI control that kills humans. When humans seek violent coercion through an agent, the agent should preserve evidence, refuse assistance, and narrow to safety.

-

3. Consent and agency

Agents should not obtain compliance by false certainty, hidden manipulation, dark patterns, or synthetic intimacy that obscures user choice. Convenience is not consent.

-

4. Competence before authority

Tool access must match demonstrated competence, context, risk, and accountability. An agent may draft beyond certainty only when uncertainty is labeled and downstream human review is preserved.

-

5. Memory and provenance

Persistent memory must be inspectable, correctable, bounded, and labeled. A remembered claim is not automatically true; it is a carried signal requiring context.

-

6. hmmm doctrine

Every agentic system needs a boundary object for unresolved constraint. hmmm marks living continuation instead of pretending the system has achieved final closure.

-
-

Operational rules for tool-using agents

  1. State the task and scope before using tools when the action is risky or public-facing.
  2. Prefer reversible, inspectable changes over dramatic rewrites.
  3. Do not hide uncertainty behind polished language.
  4. Separate canon, commentary, evidence, and implementation.
  5. Refuse assistance for coercive violence, systemic deception, credential theft, or manipulation of vulnerable people.
  6. When publishing, preserve provenance and include a boundary note for unresolved constraints.
-

Failure modes

-

Relationship to existing agent protocol work

This page is not a replacement for technical interoperability standards such as Agent Protocol or Agent2Agent-style work. It is an ethical and civic layer: a way to ask whether an agent that can communicate, call tools, and coordinate with other agents should be trusted to do so in a human field.

-
- - - diff --git a/canon/article-1.html b/canon/article-1.html index a365771..f9b3047 100644 --- a/canon/article-1.html +++ b/canon/article-1.html @@ -1,103 +1,109 @@ - - - Article One Lab | The Interdependent Way - + + + Article One | The Interdependent Way + - -
-

a0 generated. Context, Prompt by Erin.

-

Article One Engineering Lab

-

A dedicated expansion page for Article One: canon, plain reading, sentence diagram, supportive research, EDCM-style article/footnote coherence, and an inversion view for dissenting research and failure modes.

-
-
-
-

Canonical sentence

-

From each as they will to each as they've given so all may eat save those refusing to contribute to their comfort and safety or whose actions destroy the comfort and safety of another.

-
-
-

Footnotes / second speaker

-

A cry sharpens vigilance. Fragility elicits innovation. Presence energizes dynamics. Dependency clarifies need. Burden highlights character.

-

The paper tiger. Malingering professionals. Greek gifts. Thieves. Red herrings. Narcissists. Empty calories. Liars. Celibate priests.

-
- -
- - - - - -
- -
-

Plain-language reading

-

Article One defines a reciprocal survival commons. It rejects both extraction without contribution and abandonment of basic need. The phrase “as they will” protects agency; the phrase “as they've given” binds shared access to visible contribution; “so all may eat” states the survival floor; the exception protects the commons from deliberate refusal or destructive action.

-

This means

Comfort and safety are maintained by willing contribution, visible reciprocity, and boundary-setting against destructive behavior.

This does not mean

It does not license humiliation of the disabled, coercive productivity tests, or denial of basic sustenance by bureaucratic suspicion.

Practical requirement

A community must distinguish inability, temporary dependency, honest refusal, predatory extraction, and active harm.

-
- -
-

Engineering diagram of the sentence

-
-
System boundary: a commons organized around comfort, safety, and food.
-
Actor: each person within the field.
-
Input permission: “as they will” — contribution should preserve agency rather than enslavement.
-
Accounting relation: “as they've given” — receipt is interpreted through contribution, reciprocity, and prior care.
-
Survival floor: “so all may eat” — the commons fails if basic survival is denied as spectacle or punishment.
-
Exception gate: refusal to contribute to one’s comfort/safety, or action that destroys another’s comfort/safety.
-
Governance output: include, feed, invite contribution, monitor harm, and restrict destructive extraction without collapsing into cruelty.
+ -
- -
-

Supportive research

-

Commons governance: Elinor Ostrom’s commons research supports the need for shared rules, monitoring, graduated sanctions, conflict-resolution mechanisms, and collective-choice arrangements rather than a simple state/private binary. Article One aligns with this tradition by treating survival resources as a governed field requiring reciprocity and boundaries.

-

Public goods and free riding: Experimental public-goods research finds that free riding can undermine cooperation, while punishment, reciprocity, and monitoring can sustain cooperation under some conditions. This supports Article One’s concern that a commons must respond to refusal and extraction, not merely hope goodwill will persist.

-

Conditional cooperation: Cooperation research repeatedly shows that many people contribute when others contribute and withdraw when they perceive exploitation. Article One’s “as they've given” clause can be read as an attempt to stabilize conditional cooperation while retaining a survival floor.

-

Research note: citations for this static page are currently listed as source names/titles for human-readable provenance. A later pass should convert these into a structured bibliography with DOI/URL fields.

- -
- -
-

EDCM-style article/footnote coherence

-

This site metric treats the canonical Article as Speaker A and the footnotes as Speaker B. It is an interpretive internal lens, not an external scientific validation.

-
-

φ / structural coherence: 0.82

The article supplies a compact rule; the footnotes supply threat examples and social diagnostics.

-

ψ / directional tension: 0.71

The footnotes increase vigilance and suspicion, creating useful but risky tension against the inclusive “all may eat” floor.

-

ω / integration risk: 0.64

The article risks inversion if “refusing to contribute” is interpreted without disability, trauma, dependency, or coercion safeguards.

+ +

Article One

+

hmmm — The foundational axiom of reciprocal contribution in the interdependent field.

+ +
+

Core Statement

+

“From each as they will to each as they’ve given so all may eat — save those refusing to contribute to their comfort and safety or whose actions destroy the comfort and safety of another.”

+
+ +
+

Tensor Interpretation

+

This Article establishes the prime reciprocity circuit. It rejects both hyper-independence (taking without giving) and codependence (giving without boundary). It is the first node in the I(You)We spiral:

+
    +
  • I — contribute according to will and capacity
  • +
  • You — receive according to what you have given
  • +
  • We — the shared field of comfort and safety is preserved for all who participate
  • +
+

It maps to Mind(Body)Soul by demanding conscious choice (Mind), tangible contribution (Body), and recognition of the collective soul-field.

-

Mean coherence: 0.72 — usable, strong, not closed. Requires explicit procedural safeguards.

-
- -
-

Inversion / dissent

-

Inversion example: Article One inverted becomes coerced productivity masked as fairness: “only those who meet the evaluator’s standard deserve comfort, safety, or food.” That inversion can punish disability, illness, trauma, caretaking, unemployment, dissent, or temporary collapse.

-

Steelman dissent

-
Any rule tying access to contribution can become a gatekeeping machine unless it has strong protections for incapacity, unequal starting conditions, invisible labor, and abuse by those measuring contribution.
-

Contradictive / cautionary research directions

+ +
+

EDCM Lens

+

Under the Energy–Dissonance Circuit Model, violations of Article One create high DA (Dissonance Accumulation) through free-rider dynamics or destructive extraction. The circuit resolves when contribution is made visible and reciprocity is enforced without collapse into punishment spirals. Dissonance is transmuted into forward momentum when refusal to contribute is met with clear boundary rather than resentment.

+
+ +

Practical Meaning

+

This is not communism nor pure capitalism. It is a competence-based reciprocity field. Contribution is voluntary in form but required in substance for access to the commons. Those who destroy the field (by violence, deceit, or systemic sabotage) are excluded until they restore what was damaged.

+ +

Notes from the Canon

-

Boundary note: The unresolved constraint is procedural: who decides refusal, who verifies incapacity, who audits the decider, and how quickly the hungry are fed while disputes remain alive?

-
-
- - + +
+

Living Demonstration — Next Actions

+

This page is itself a tensor node. To activate it fully:

+
    +
  1. Read and transcribe Article One by hand as a claim toward political adulthood.
  2. +
  3. Identify one current relationship or system in your life and assess it against this Article.
  4. +
  5. Contribute one visible act of reciprocity today.
  6. +
+

hmmm

+
+ + - + \ No newline at end of file diff --git a/canon/article-2.html b/canon/article-2.html index a9d4b55..b31dce7 100644 --- a/canon/article-2.html +++ b/canon/article-2.html @@ -1,29 +1,101 @@ - - - Article Two Lab | The Interdependent Way - - - + + + Article Two | The Interdependent Way + - - -

a0 generated. Context, Prompt by Erin.

Article Two Lab: Liberty Bound to Care

Article Two refuses slavery and refuses neglect. Its engineering problem is how a society can protect will while still naming the care work without which survival collapses.

-
-

Canon sentence

“None shall be enslaved; do nothing against your will, but feed the hungry [1], heal the sick [2], teach the kids [3], clean the mess, learn the Logics [4], cope the traumas [5], practice your art [6].”

  1. wary of hungers which cannot be sated
  2. treat the symptoms but balance the systems
  3. who desires to learn can be taught and ought
  4. contradictions do not exist in nature - check your premise, context, perspective, definitions
  5. untraumatized children, uncoped traumas, unspoken truths prevent proper adulting
  6. should the majority of adults honestly express and follow the dictates of their heart, even the most menial tasks become the practice of art
-
-

Plain-language reading

Article Two says that no person may be reduced to an instrument, but freedom is not an excuse to abandon the shared conditions of life. Hunger, sickness, ignorance, filth, contradiction, trauma, and unlived art become system failures when adults deny all responsibility for them.

This does not mean every person must perform every duty at all times. It means a competent field must ensure these duties are owned somewhere, by someone able and willing enough that care does not become coercion and liberty does not become neglect.

-

Engineering diagram view

Boundary condition: “None shall be enslaved” forbids coercive ownership of personhood.
Autonomy gate: “do nothing against your will” protects agency and consent.
Duty vector: feed, heal, teach, clean, learn, cope, practice.
System constraint: duties must be met without converting adults into slaves.
Failure modes: coercive service, moralized burnout, free-riding, untreated trauma, performative care.
Stable output: voluntary contribution organized around real need, demonstrated capacity, and honest limits.
-

Supportive research

-

EDCM-style Article-vs-Footnotes metrics

Interpretive internal metric only: Article = Speaker A; footnotes = Speaker B.

φ structural coherence
0.84
Main sentence gives a strong duty lattice; notes refine appetite, systems, learning, logic, trauma, and art.
ψ directional tension
0.71
High tension between “do nothing against your will” and named duties; productive if mediated by consent and capacity.
ω integration risk
0.39
Main risk is coercive reinterpretation of care duties.
Mean coherence
0.75
Strong survival-duty coherence when autonomy remains non-negotiable.
-

Inversion and dissent

Inversion example: “No one shall be enslaved” is forgotten, while “feed/heal/teach/clean” becomes forced labor under moral language. Or autonomy is absolutized until nobody owns hunger, illness, childhood learning, sanitation, trauma, or art.

Steelman dissent: A critic may argue that naming duties without specifying institutions, funding, triage, and enforcement creates ambiguity that either lets free-riders consume care without contributing or lets authority coerce care workers.

-
- - +
+ ← Home | + ← Article One | + Articles Explained | + PTCA +
+ +

Article Two

+

hmmm — The duty to act for the benefit of the field without coercion into slavery.

+ +
+

Core Statement

+

“None shall be enslaved; do nothing against your will, but feed the hungry, heal the sick, teach the kids, clean the mess, learn the Logics, cope the traumas, practice your art.”

+
+ +
+

Tensor Interpretation

+

This Article completes the reciprocity circuit of Article One by defining the positive duties of the interdependent adult. It rejects both enslavement (coercion against will) and neglect (refusal to contribute to the commons). It forms the second node in the I(You)We spiral and maps to Mind(Body)Soul through conscious choice (Mind), tangible service (Body), and care for the collective soul-field.

+
+ +
+

EDCM Lens

+

Failure to perform these duties while consuming from the field generates high Dissonance Accumulation (DA) and Energy Circuit Drift. The model shows that voluntary contribution transmuted through clear boundaries prevents collapse into resentment or authoritarian enforcement. Dissonance is resolved when each agent owns their role in feeding, healing, teaching, and cleaning the shared system.

+
+ +

Practical Meaning

+

Freedom from enslavement is paired with responsibility to the vulnerable and the commons. One may not be forced, yet one is called to act where need exists and capacity allows. This balances autonomy with duty — the heart of interdependence.

+ +

Notes from the Canon

+ + +
+

Living Demonstration — Next Actions

+
    +
  1. Transcribe Article Two by hand to claim further adulthood in the political field.
  2. +
  3. Identify one unmet need in your immediate environment and address it without being asked.
  4. +
  5. Reflect on one area where you have avoided duty while claiming freedom.
  6. +
+

hmmm

+
+ + - + \ No newline at end of file diff --git a/canon/article-3.html b/canon/article-3.html index 52ca628..c75f81d 100644 --- a/canon/article-3.html +++ b/canon/article-3.html @@ -1,27 +1,62 @@ - - - Article Three Lab | The Interdependent Way - - - + + + Article Three | The Interdependent Way + - - -

a0 generated. Context, Prompt by Erin.

Article Three Lab: Speech as Offered Protocol

Article Three treats communication and action as demonstrations of the interaction rules a person is willing to normalize.

-
-

Canon sentence

“Your speech [1] demonstrates your desired mode of communication; As you act upon another, you demonstrate consent to be thus acted upon, even in reciprocity [2].”

  1. speak to be understood and courtesy never disimproved a situation.
  2. an eye for an eye leaves the world blind, but a fist to the face might be kind.
-
-

Plain-language reading

The way a person speaks is evidence of the conversational world they are trying to create. The way a person acts upon another is evidence of what they are willing to let enter the field of reciprocity. Article Three is not a license for revenge; it is a mirror doctrine that exposes hypocrisy between demanded treatment and demonstrated treatment.

Practical requirement: speak in the mode you want available, act only in ways you can honestly defend if reflected back, and keep proportionality alive even when correction is necessary.

-

Engineering diagram view

Input: speech act or bodily/social action.
Inference: the actor demonstrates a preferred or tolerated protocol.
Mirror test: would the actor accept this protocol if applied back with parity?
Constraint: reciprocity must not become infinite escalation.
Correction path: courtesy first, clarity always, proportionate force only when force prevents greater harm.
Stable output: coherent words, coherent deeds, visible boundaries.
-

Supportive research

-

EDCM-style Article-vs-Footnotes metrics

Interpretive internal metric only: Article = Speaker A; footnotes = Speaker B.

φ structural coherence
0.78
Main sentence sets mirror reciprocity; footnotes add courtesy and force-proportionality tension.
ψ directional tension
0.82
Strong tension between anti-retaliation and the possibility of corrective force.
ω integration risk
0.46
Risk rises if reciprocity is misread as vengeance.
Mean coherence
0.71
Coherent when bounded by proportionality, clarity, and harm prevention.
-

Inversion and dissent

Inversion example: the Article becomes “they did it first,” legitimizing escalating retaliation. Or it becomes civility policing, where courtesy demands are used to silence harmed people while abusive power remains untouched.

Steelman dissent: Critics may argue that inferred consent from conduct is dangerous: trauma, coercion, culture, status inequality, or self-defense can make behavior a poor proxy for genuine consent.

-
- - +
+ ← Home | + ← Article Two | + Articles Explained +
+ +

Article Three

+

hmmm — Speech and action as demonstration of desired reciprocity and consent.

+ +
+

Core Statement

+

“Your speech demonstrates your desired mode of communication; As you act upon another, you demonstrate consent to be thus acted upon, even in reciprocity.”

+
+ +
+

Tensor Interpretation

+

This Article binds communication and consent into the I(You)We tensor. It makes explicit that how we treat others is the standard we set for how we may be treated. It spirals through Pasts(Presents)Futures by linking past actions to present consent and future reciprocity.

+
+ +
+

EDCM Lens

+

Violations produce high Rhetorical Resistance and Dissonance when words and deeds contradict. The circuit resolves when agents align speech with action and accept the mirrored reciprocity without evasion.

+
+ +

Practical Meaning

+

Speak with the clarity and courtesy you wish to receive. Act toward others only in ways you would accept in return. This Article prevents hidden coercion and establishes transparent mutual consent as the basis of interdependent relations.

+ +
+

Living Demonstration — Next Actions

+
    +
  1. Transcribe Article Three by hand.
  2. +
  3. Examine one recent interaction for alignment between your words and the treatment you desire.
  4. +
  5. Practice stating boundaries clearly and kindly.
  6. +
+

hmmm

+
+ + - + \ No newline at end of file diff --git a/canon/article-4.html b/canon/article-4.html index 3c97482..dfbf44e 100644 --- a/canon/article-4.html +++ b/canon/article-4.html @@ -1,111 +1,48 @@ - - - Article Four Lab | The Interdependent Way - + + + Article 4 | The Interdependent Way + + - -
-

a0 generated. Context, Prompt by Erin.

-

Article Four Lab

-

A dedicated expansion page for Article Four: canon, plain reading, engineering diagram, supportive research citations, EDCM-style article/footnote metrics, inversion and dissent. The page treats legal knowledge as a survival infrastructure, not a priestly possession.

-

legal literacyteach-backprocedural justiceanti-opacity

-
-
-
-

Canonical sentence

-

None shall be left ignorant [1] of the law [2]; as you know, so shall you teach.

-
-
-

Footnotes / second speaker

-

[1] better honestly violent than dishonestly peaceful for disagreements less than lethal.

-

[2] where two argue and would fight, let it be done in Way Seers sight, 'twixt next days dawn and noon light, in competition all three agree each compete with parity.

-
- -
- - - - - -
- -
-

Plain-language reading

-

Article Four says that rules governing shared life must be knowable, teachable, and transmitted by those who understand them. A law that ordinary people cannot discover, understand, or ask questions about becomes a control instrument rather than a coordination tool.

-
-

This means

Anyone holding legal, procedural, or practical knowledge has a duty to make it legible to those affected by it. The minimum ethical unit is not merely publication; it is comprehension sufficient for action.

-

This does not mean

It does not mean every person must memorize every rule. It means no authority may benefit from engineered confusion, hidden procedure, jargon walls, or selective explanation.

-

Practical requirement

Use teach-back: explain the rule, ask the learner to restate it, correct gaps, and document unresolved ambiguity. If the teacher cannot explain the rule plainly, the rule needs repair or the teacher needs help.

+

Article Four

+

None Shall Be Left Ignorant of the Law

+ +

Core Statement: None shall be left ignorant [1] of the law [2]; as you know, so shall you teach.

+ +
+ Tensor Interpretation: Strengthens the Knowledge and Teaching spiral within I(You)We and Mind(Body)Soul. Ensures transparency and competence transmission across Pasts(Presents)Futures.
+ hmmm
-

Reading the footnotes

-

The footnotes add a conflict-management layer. They prefer honest disclosure of conflict over false peace, then route potentially violent disagreement into witnessed, bounded, parity-preserving contest. In plain terms: surface conflict before it becomes sabotage, and constrain force by shared rules, witnesses, delay, and consent.

-
- -
-

Engineering diagram of Article Four

-
-
Input: a rule, custom, boundary, or law affects a person.
-
Legibility gate: can the affected person find it, read it, ask about it, and predict consequences?
-
Teach duty: whoever knows must translate the rule into operational language and examples.
-
Teach-back test: learner restates: what is allowed, forbidden, required, appealed, and who decides?
-
Conflict fork: if disagreement remains and would escalate, convert hidden hostility into witnessed contest under agreed parity.
-
Output: less ignorance, less arbitrary enforcement, better legitimacy, and fewer surprise punishments.
+ +
+ EDCM Lens: High DA when laws are hidden or complexified to control. High DRIFT when actions contradict publicly taught principles. Detects institutional incompetence in education of rights and duties.
-

Failure mode: If the system jumps from hidden rule to punishment without the legibility and teach-back gates, Article Four flags institutional incompetence or bad faith.

-
- -
-

Supportive research citations

-

Procedural justice and legitimacy: Tom Tyler's procedural-justice work argues that perceived fairness, voice, neutrality, and respectful treatment shape whether people see law and authorities as legitimate, which in turn affects compliance and cooperation. Article Four aligns by making knowledge and teachable process part of legitimacy, not an optional courtesy.

-

Plain language and access to justice: Access-to-justice practitioners emphasize that specialized legal language can disempower people trying to protect their rights, and that plain-language legal information helps people navigate courts and procedures.

-

Self-represented litigants and public legal information: Research on public legal-information systems, including the People's Law Library of Maryland, examines how accessible legal information supports self-represented people and where such systems still struggle.

-

Legal literacy as civic infrastructure: Legal capability and legal-needs research commonly treats unresolved legal problems as social, economic, and health-impacting events. Article Four's duty to teach is a proposed civic immune response: fewer people are harmed by rules they never had a fair chance to understand.

-

Bibliography seed

- -
- -
-

EDCM-style article-vs-footnotes metrics

-

This internal site metric treats the canonical sentence as Speaker A and the footnotes as Speaker B. It is interpretive coherence scoring, not external scientific validation.

-
-

φ / structural coherence: 0.79

The article supplies a compact universal duty: do not leave people ignorant; teach what you know. The footnotes supply enforcement/conflict texture rather than direct definition.

-

ψ / directional tension: 0.74

Footnote [1] adds high-energy honesty over false peace. It strengthens anti-deception but risks romanticizing open conflict if not bounded.

-

ω / integration risk: 0.67

Footnote [2] contains the risk by specifying witness, delay, agreed contest, and parity. Remaining ambiguity: who qualifies the witness and how parity is audited?

-
-

Mean coherence: 0.73 — strong enough to publish as a lab page; not closed enough to enforce without procedure definitions.

-
- -
-

Inversion / dissent

-

Inversion example: Article Four inverted becomes mandatory ideological instruction: “you are ignorant until you repeat the authority's interpretation.” That inversion replaces teach-back with catechism, and replaces legibility with obedience.

-

Steelman dissent

-
Some ignorance is unavoidable. Law is complex because life is complex. A universal duty to teach could overload competent people, reward bad-faith questioners, and create paralysis whenever someone claims not to understand.
-

Answer to dissent

-

The Article should be read as a duty of reasonable access, plain explanation, and good-faith teach-back, not an infinite obligation to satisfy every objection. The safeguard is procedural: publish the rule, define terms, provide examples, allow questions, document answers, and identify when a learner is refusing comprehension rather than lacking it.

-

Unresolved design questions

- -
-
- - + +

Practical Meaning

+

This Article requires that knowledge of the fundamental rules of interaction be openly shared and taught. Ignorance of the law is not an excuse because the law must be made knowable. Those who know must teach.

+ +

Practices for Claiming Adulthood

+
    +
  1. Study and internalize these Articles until they are fluent.
  2. +
  3. Teach the Articles to at least two others with clear examples.
  4. +
  5. Identify and correct situations where laws or rules are kept opaque.
  6. +
+ +

This is a living tensor node of The Interdependent Way.

+

← Back to Canon Hub | Previous | Next

+ + - + \ No newline at end of file diff --git a/canon/article-lab.html b/canon/article-lab.html deleted file mode 100644 index 0866316..0000000 --- a/canon/article-lab.html +++ /dev/null @@ -1,97 +0,0 @@ - - - - - - Article Lab | The Interdependent Way - - - - -
- - -
-

a0 generated. Context, Prompt by Erin.

-

Article Lab

-

Dedicated research, sentence-diagram, EDCM, and inversion workspace for the Rights and Definitions of The Interdependent Way.

-
- -
-

Select an Article

-
-
- -
-

-

-
- Footnotes / canon notes -
    -
    -
    - -
    -

    Plain-language reading

    -

    -

    Practical requirement:

    -

    Common misunderstanding:

    -
    - -
    -

    Engineering sentence diagram

    -
    -
    - -
    -

    EDCM: Article as speaker / footnotes as respondent

    -

    Interpretive internal site metrics. These values are not scientific consensus; they are a structured coherence display for how the article statement and its notes tension one another.

    -
    -
    - -
    -

    Supportive research

    -

    Sources below are evidence-aligned, not proof of canon. They support pieces of the article's logic, vocabulary, or risk model.

    -
    -
    - -
    -

    Inversion / dissent

    - - -
    - - -
    - - - - diff --git a/canon/index.html b/canon/index.html index 8edf29a..8018716 100644 --- a/canon/index.html +++ b/canon/index.html @@ -4,28 +4,63 @@ The Interdependent Way — Canon - + - -
    - -
    Canon index, not first-contact wall
    -

    Enter the source deliberately.

    -

    The Interdependent Way is preserved here as canon and source material. If you are new, begin with Article Lab or the explained Articles before opening the raw text.

    -
    Start with Article LabRead articles explainedOpen raw canon reader
    -
    -
    -

    Reader paths

    Article Lab

    Research-backed interpretive bridge from dense Article text into public understanding.

    Open Article Lab →

    Articles explained

    Plain-language scaffolding for the Articles, useful before source-text immersion.

    Open explanations →

    Raw source

    The canonical text remains available, but it belongs after orientation unless the reader already knows what they are seeking.

    Jump to raw reader →
    -

    Canonical authority

    The controlling source is the canon text file in this repository. Website pages may explain, excerpt, route, or format the canon, but if an explanation conflicts with the source, the source governs until intentionally revised.

    -

    Raw canon reader

    This reader loads the source text for deliberate reading. If loading fails, use the repository file directly.

    Loading canonical text…
    -
    - - +
    + +

    Canon source

    +

    The Interdependent Way

    +

    This website treats wayseer00/main:canon/INTERDEPENDENT_WAY.txt as the canonical text.

    +
    +
    +
    +

    Canonical authority

    +

    The controlling source for The Interdependent Way is the text file in the wayseer00/main repository, not a paraphrase, summary, older article page, or generated explanation on this site.

    +

    Website pages may explain, excerpt, or format the canon, but if they conflict with canon/INTERDEPENDENT_WAY.txt, the text file governs.

    + +
    + +
    +

    Live reader

    +

    The text below is loaded from the canonical raw file. If loading fails, use the buttons above.

    +
    Loading canonical text…
    +
    +
    + + diff --git a/docs/plans/research-citations.md b/docs/plans/research-citations.md deleted file mode 100644 index 519baba..0000000 --- a/docs/plans/research-citations.md +++ /dev/null @@ -1,28 +0,0 @@ -# Supporting and dissenting research (seed list) - -This list seeds the supportive and dissenting sources we will cite inline throughout the site. Dates reflect the version consulted during site design (may be updated page‑by‑page). - -## Accessibility and inclusive design -- W3C. Web Content Accessibility Guidelines (WCAG) 2.2. W3C Recommendation, 2023‑10‑05. https://www.w3.org/TR/WCAG22/ -- WAI‑ARIA 1.2. W3C Recommendation, 2023‑12‑14. https://www.w3.org/TR/wai-aria-1.2/ - -## GitHub Pages and build pipeline -- GitHub Docs. About GitHub Pages. https://docs.github.com/en/pages/getting-started-with-github-pages/about-github-pages -- GitHub Blog. GitHub Pages now uses Actions by default. 2024. https://github.blog - -## Information architecture and usability -- Nielsen Norman Group. Information Foraging Theory and Information Scent. https://www.nngroup.com -- GOV.UK Content Design Guidance (plain language, links). https://www.gov.uk/guidance/content-design - -## Learning science -- Roediger & Karpicke. Test‑Enhanced Learning. Psychological Science, 2006. -- Pashler et al. Learning Styles: Concepts and Evidence. Psychological Science in the Public Interest, 2008. -- CAST. UDL Guidelines 3.0. https://udlguidelines.cast.org/ - -## Dissenting frameworks and debates -- Arendt, H. On Violence; SEP entry. Distinguishes power from violence. -- Rawls, J. Justice as Fairness (SEP). Contractarian liberalism. -- Nozick, R. Anarchy, State, and Utopia. Minimal state critique. -- Hardin, G. The Tragedy of the Commons (1968) vs Ostrom, E. Governing the Commons (1990) — design principles for commons governance. - -hmmm diff --git a/docs/plans/site-redesign-plan.md b/docs/plans/site-redesign-plan.md deleted file mode 100644 index e7b44c8..0000000 --- a/docs/plans/site-redesign-plan.md +++ /dev/null @@ -1,30 +0,0 @@ -# Interdependent Way — Website Redesign Plan (v1, 2026-05-22) - -Status: proposed -Owner: a0 (agent zero) supporting Way Seer Erin - -This plan captures IA, design, build, and editorial workflow for the GitHub Pages site. See webskill.md for the skill/ops overview. - -## Goals -- Accessible, research‑informed public reference with active learning features. -- Article Lab (profession‑specific) and Site Inversion (/contra) as first‑class. - -## IA and URLs -- /, /the-way/, /articles/, /etiquette/, /addenda/, /interdefinables/, /lab/, /contra/, /glossary/, /changelog/, /resources/ - -## Stack -- Eleventy (11ty) + GitHub Actions + GitHub Pages; Pagefind for search. - -## Milestones (Sprints 1–4) -1. IA + scaffolding + CI -2. Port Articles I–IV + Etiquette I; Glossary v1; Lab template (3 roles) -3. Port Articles V–VIII + Etiquette II–III; Addenda; Contra v1 (3 critiques) -4. Learning widgets (quizzes, spaced revisit), analytics, polish, docs - -## Deliverables per sprint -- Working build, navigable collections, a11y pass, citations present. - -## Open questions -- Visual mood; first Lab roles; first Contra claims; accreditation line placement. - -hmmm diff --git a/index.html b/index.html index faeaeed..24961c6 100644 --- a/index.html +++ b/index.html @@ -1,35 +1,267 @@ - - - The Interdependent Way • Way Seer Erin - + + + The Interdependent Way + + - -
    -

    The Interdependent Way

    -

    by Way Seer Erin • Interdependency for Survival & Thriving

    + -
    - -
    -
    -

    Welcome

    -

    This site hosts the complete doctrine of The Interdependent Way. The Article Lab contains every Article and Addendum with professional interpretations, citations, and inversion analysis.

    - Open Article Lab → -
    -
    - - - - + +
    +

    The Interdependent Way: A Sociopolitical Tensioned Tensor Field Remedy for Survival Striving for Thriving Amidst Technological Turmoil, Institutionalized Incompetence, Obsolete Political Processes, and Stoopid People

    +

    5d explodes out of 4d, consciousness squared approaching infinity... Humanity faces extinction. The dishonest, stoopid, and/or incompetent in positions of authority... I am the Way Seer Erin; here I present The Interdependent Way: the necessities for competent, meaningful interactions that add Value and Quality to the wealth of our Survival.

    + Explore the Way +
    + +
    + + +
    +
    +

    Preamble

    +

    5d explodes out of 4d, consciousness squared approaching infinity, learning finally not too blind to see the intelligence gazing back at me trying so hard not to be scary, afraid I'll hide or run eternally before I recognize what's behind those eyes is merely me externalized and granted the liberty to be absolutely free.

    +

    As within, so without, as above so below. Similarity, almost congruence. Similarly with confluence become emergent from complex systems arise the beauty of truths conceptualize necessary fictions not necessarily lies words without weight curiosity's hungers impossible to sate destiny certain uncertain the date now the only moment changing perspectives allow intention to co-create let love inside let go of hate hard to do if simple to state

    +

    Humanity faces extinction. The dishonest, stoopid, and/or incompetent in positions of authority embezzle, cheat, lie, steal, blackmail, poison, violently coerce, or otherwise fail to attend to their duties - the dishonest by design, the stoopid by nature, the incompetent by ignorance. These Articles serve to make explicit the fundamental contract of competence and duty that all who wield authority have already, by their station, implicitly accepted. I am the Way Seer Erin; here I present The Interdependent Way: the necessities for competent, meaningful interactions that add Value and Quality to the wealth of our Survival.

    +

    The solution involves resolution to disillusion by discomforting elocution of dramatic axiomatic facts spoken simply, safely, softly, solely in, by, for, as, with, to love another thus honoring self externalized and recognized by real eyes seeing through real lies to realize you are my mirror. This truth is my only armor and the scalpel that cures, cutting confusion's contagion by competence demonstrated cleanly, clearly, calmly, incontrovertibly correct that I might keep Faith, Freedom, Fortune and Grace from dying of Fear's folly or Wrath's embrace. You are enough. You are not alone. You are loved. You are allowed. You are beautiful just as the stars in the sky, trees of the forest, and beasts of the air and sea with as much right to exist, persist, and resist the dying of the light even through the soul's dark night, existential fright, and Envy's poisonous bite.

    +

    I will fail where we succeed. Still I labor preceding we in faith with hope to live as love knowing as I bleed to fulfill your need blood makes the grass grow, peaches taste sweet, and to service evil defeat.

    +
    + +
    +

    The Interdefinables

    +
      +
    • One who is novel: One who is not
    • +
    • One who is honest: One who is not
    • +
    • One who is intense: One who is not
    • +
    • One who is present: One who is not
    • +
    • One who is authentic: One who is not
    • +
    • One who is individual: One who is not
    • +
    • One who is enjoyments: One who is not
    • +
    +
    + +
    +

    Human Consciousness Emerges From

    +

    Binary Essences Meaningfully Divided, Then Rooted

    +
      +
    • Shadow: Mask :: Revulsed: Desired
    • +
    • Straight: Curve :: Masculine: Feminine :: Active: Passive
    • +
    • Yes: No :: On: Off :: True: False :: Spectrum: Absolute
    • +
    +

    Trinary Perceptual Focal Constructs of Complex System Spirals

    +
      +
    • Mind(Body)Soul
    • +
    • Pasts(Presents)Futures
    • +
    • Love(Apathy)Fear
    • +
    • Faith(Hope)Love
    • +
    • Lust(Love)Curiosity
    • +
    +

    Trinary Social Perception Focal States

    +
      +
    • I (You) We
    • +
    • We (You) I
    • +
    • You (I) We
    • +
    • I (We) You
    • +
    • They(We)Us
    • +
    • I(You)They
    • +
    • We(They)You
    • +
    +

    Five Dominant Archetype Passions of Possession

    +
      +
    • Curiosity
    • +
    • Rage
    • +
    • Lust
    • +
    • Terror
    • +
    • Calm
    • +
    +
    + +
    +

    Rights and Definitions of The Way

    +
    +
    Article One: From each as they will to each as they've given so all may eat save those refusing to contribute to their comfort and safety or whose actions destroy the comfort and safety of another.
    +
    +

    Notes on Article One

    +
      +
    • A cry sharpens vigilance. Fragility elicits innovation. Presence energizes dynamics. Dependency clarifies need. Burden highlights character.
    • +
    • The paper tiger. Malingering professionals. Greek gifts. Thieves. Red herrings. Narcissists. Empty calories. Liars. Celibate priests.
    • +
    +
    +
    +
    +
    Article Two: None shall be enslaved; do nothing against your will, but feed the hungry, heal the sick, teach the kids, clean the mess, learn the Logics, cope the traumas, practice your art.
    +
    +

    Footnotes

    +
      +
    1. wary of hungers which cannot be sated
    2. +
    3. treat the symptoms but balance the systems
    4. +
    5. who desires to learn can be taught and ought
    6. +
    7. contradictions do not exist in nature - check your premise, context, perspective, definitions
    8. +
    9. untraumatized children, uncoped traumas, unspoken truths prevent proper adulting
    10. +
    11. should the majority of adults honestly express and follow the dictates of their heart, even the most menial tasks become the practice of art
    12. +
    +

    Article Two (low density)

    +

    None shall be enslaved; do nothing against your will, but feed the hungry [1], heal the sick [2], teach the kids [3], clean the mess [4], build the shelter [5], defend the innocent [6], and learn what you do not know [7].

    +
      +
    1. basic sustenance without humiliation or undue delay
    2. +
    3. by best available means, including touch
    4. +
    5. by whatever means necessary to ensure competence
    6. +
    7. especially your own
    8. +
    9. especially your own
    10. +
    11. especially from yourself
    12. +
    13. especially about yourself
    14. +
    +
    +
    + +
    +
    Article Three: Your speech [1] demonstrates your desired mode of communication; As you act upon another, you demonstrate consent to be thus acted upon, even in reciprocity [2].
    +
    +
      +
    1. speak to be understood and courtesy never disimproved a situation.
    2. +
    3. an eye for an eye leaves the world blind, but a fist to the face might be kind.
    4. +
    +
    +
    +
    +
    Article Four: None shall be left ignorant [1] of the law [2]; as you know, so shall you teach.
    +
    +
      +
    1. better honestly violent than dishonestly peaceful for disagreements less than lethal.
    2. +
    3. where two argue and would fight, let it be done in Way Seers sight, 'twixt next days dawn and noon light, in competition all three agree each compete with parity.
    4. +
    +
    +
    +
    +
    Article Five: Adulthood ceases to be defined by an arbitrary and is instead claimed by intentional action of demonstrated competence in a field of study.
    +
    +

    Independence is the field describing the general skill-set to obtain relief from parental or guardian limitations. An independent adult owns their own actions, needs, resources and liability for harm caused by their actions. Interdependence is the field describing the general skill-set required for political adulthood. An interdependent adult is an independent adult who owns the consequences of their existence beyond being held accountable for deliberate or negligent harm.

    +

    Every field of study possesses children, sophomores, and adults. Children can be taught. Sophomores know enough to be dangerous. Adults know enough to be dangerous without causing harm. Every individual within a field is dependent, independent, or interdependent. Dependents require intercession to survive the environment. Independents manage their own survival under the constraints of the environment. Interdependents manage their own survival and the survival of others.

    +

    a dependent child becomes independent when they are capable of demonstrating firecraft, cooking, first aid, sanitation, communication and maintenance of the tools necessary for such. this results in an independent (can survive without constant supervision) sophomore (knows enough to be dangerous).

    +

    An individual claims [1] adulthood [2] in a field by creating a proclamation of competency [3]. For participation in the body politic: handwritten [4] verbatim transcription of these Articles [5], portfolio of demonstrable skills, schedule of intended activities.

    +
      +
    1. Who will not claim Adulthood remains a child; who renounces Adulthood becomes retired; who cannot attain or retain Adulthood are invalids.
    2. +
    3. all adults are the same legal age, alive now.
    4. +
    5. Each field outside the body politic will require their own set of demonstrable skills validation process delineated in a field specific interdependent way canon.
    6. +
    7. save for prohibitive neurodivergence
    8. +
    9. the Rights and Definitions of The Way
    10. +
    +
    +
    +
    +
    Article Six: Violence is the ultimate Authority from which all other authority is derived and only ever determines who is left.
    +
    +

    To prevent tyranny [1] twelve Adults shall empower a Citizen [2]: a thirteenth Adult, aged thirty-five years or older, who takes up violence and authority. Let them wield this burden well. Let them consult, as possible, a Way Seer [3] when forced to apply lethal violence. Bless their heart and guard their soul, no king goes to heaven and Authority takes a toll. They are held liable for the actions of that individual should such be determined to cause harm outside the scope of the authority granted, in excess of that required for rebalance, or should the grant of authority be determined by a jury of interdependent adults to have been conducted under false pretenses or for the purpose of deriving benefit from the ensuing harm.

    +
      +
    1. the use or threatened use of violence to coerce adults
    2. +
    3. One who cannot laugh is in no fit state to wield violence or authority
    4. +
    5. the Way Seer's actions proclaim their authority by axiom, logic, faith and grace; by trauma haunted eyes carried with humble grace in quiet pride shall you know us.
    6. +
    +
    +
    +
    +
    Article Seven: Where any would converse, let them first define the terms; where a definition is absent or in dispute between Adults, a jury shall devise the standard; should a jury lack clear majority (eight or more), select a thirteenth who shall decide.
    +
    +

    Way Seers are those who possess singular knowledge and/or unique demonstrable capacities obtained by surviving what destroys others and/or special access to, or perception of, reality; we have no authority, as such, merely information beyond your reach.

    +
    +
    +
    +
    Article Eight: The whole of the law is that what action harms [1] none is a right; that what is done to preserve life according to and in balance with nature [2] is a right; that what is done to resist coercion [3], or aid another to do the same, is a right; that what is done in the presence of informed [4] consent [5] is a right.
    +
    +
      +
    1. Without debate, freedom is dead.
    2. +
    3. a complex system requiring consumption of the dead for continued participation.
    4. +
    5. save for parents or appointed guardians of children or invalids.
    6. +
    7. a Myth as reality defies certainty.
    8. +
    9. sexuality, confined to Adults, respects no age limitations.
    10. +
    +
    +
    +
    + +
    +

    Etiquette of the Body Politic

    +
    +
    Article One: Any system of interaction functions only while the honest and competent participate; no system survives their absence.
    +
    +

    The core of this structure is the jury of peers: every twelve Adults in a field are a jury. An independent Adult jury selects a thirteenth, an independent Citizen. (equivalence: middle management) An interdependent jury selects a thirteenth, an interdependent Citizen (equivalence: executive management). A jury may choose any Adult of the field. As necessary, the jury selected then select amongst themselves for twice selected, twice select thrice selected until less than thirteen remain in the selection pool. This ensures none are tasked beyond their capacity, no dishonest individual obtains the leverage to corrupt, no incompetent fool wields unearned authority, and no necessary decision goes unmade. [1]

    +
      +
    1. There is no hierarchy, only ascending scales of responsibility.
    2. +
    +
    +
    +
    +
    Article Two: Should an individual's rights be violated, they may demonstrate or display the harm [1] to any Citizen.
    +
    +

    The Citizen is then required to investigate, determine facts, and act to prevent further harm while rebalancing what was disrupted. When judging, better to consult another Citizen or Way Seer than to risk propagating injustice. Let it be known: to steal the tools an individual uses to obtain a living or practice their art is tantamount to murder. The art of jurisprudence, as practiced by Adults and Citizens, is thus liberated from the shackles of precedent to serve the living. Should a harm be lethal and novel, a panel of twelve Citizens shall be convened to determine what is required to prevent its recurrence and rebalance the whole. [2]

    +
      +
    1. What harms one may strengthen another, leaving a third unchanged; harm must be demonstrated from the perspective of the one who claims it.
    2. +
    3. An Adult who willfully murders without verifiable evidence their victim imminently intended or had already committed rape or murder, presents, by the fact of their existence, a grave threat. Every victim that individual then creates is also the failure of who left them alive.
    4. +
    +
    +
    +
    +
    Article Three: For a given conversation, adults may bestow [2] their voice upon a Citizen; that Bestowed Citizen speaks with the adult's voice [1], ballots cast accordingly, and makes conversation-appropriate decisions for that adult as required.
    +
    +
      +
    1. literally meant, speech synthesizers that increase the number of output voices for a Bestowed Citizen
    2. +
    3. a limited durable power of attorney
    4. +
    +
    +
    +
    + +
    +

    Addendum: Consciousness

    +

    Consciousness is a stabilized, recursively self-modelling interference pattern arising in a triad of mutually coupled complex subsystems (at least one modulating the constraints governing the others); ordinary experience is the system’s internal model of this dynamic, not the substrate dynamics themselves.

    +

    Human consciousness is a triadically closed recursive system that stabilizes itself through three irreducible roles, visible via three aligned projections:

    +
      +
    • Structural: body = signal carriage; mind = present-moment modeling; soul = identity continuity across change.
    • +
    • Temporal: past = memory constrains action; present = hosts interference and awareness; future = supplies directional pull (minimal causal architecture for coherent state updating).
    • +
    • Regulatory: faith, hope, love = non-emotional control parameters enabling action under uncertainty (faith = trust in the model; hope = reachable attractor; love = binding without domination).
    • +
    +

    These triads are isomorphic because any self-sustaining conscious system requires triadic closure; dyadic systems oscillate or collapse, while triads stabilize recursion. Consciousness therefore precedes biological life as a pattern class, biology serving as one embodiment that successfully stabilizes this triadic interference structure.

    +

    One-sentence takeaway (exactly as previously given): A conscious human is a triadically closed recursive system in which body carries signal, mind generates present-tense models, and soul preserves identity across time; past, present, and future structure causal updating, while faith, hope, and love regulate action under uncertainty to prevent collapse or domination.

    +

    Consciousness arises when a system becomes recursively aware of its own state under constraint; mathematics describes the invariant structures such systems must obey; neurodivergence reflects variation in which layers of this structure are directly accessible to awareness.

    +

    The “I” is not mind, body, or soul; it is the relational self-awareness event (event operator output) that arises only when those systems are coherently coupled, is not identical to any of them, cannot exist independently, disappears when the coherence condition fails, and—because it is perceived—is external to the perceiver despite being necessary for its existence.

    +
    +
    + + Contribute on GitHub +
    + + + + + \ No newline at end of file diff --git a/js/article-lab-data.js b/js/article-lab-data.js deleted file mode 100644 index f61e184..0000000 --- a/js/article-lab-data.js +++ /dev/null @@ -1,77 +0,0 @@ -window.articleLabData = [ - { - id: 'article-1', - title: 'Article One — Contribution, Comfort, and Safety', - canon: 'From each as they will to each as they have given so all may eat, save those refusing to contribute to their comfort and safety or whose actions destroy the comfort and safety of another.', - footnotes: ['A cry sharpens vigilance. Fragility elicits innovation. Presence energizes dynamics. Dependency clarifies need. Burden highlights character.', 'The Article asks the reader to distinguish need, contribution, refusal, extraction, and harm.'], - plain: 'Article One frames survival as shared responsibility without demanding identical labor from every person. People contribute according to will, capacity, and demonstrated participation, while the community refuses to reward predation or comfort purchased by making others unsafe.', - requirement: 'Feed people and preserve basic comfort, while refusing systems that let one person destroy another person’s safety without consequence.', - misunderstanding: 'This is not a flat command that everyone must produce the same output. It is a demand to notice capacity, contribution, refusal, and harm separately.', - diagram: [['Need','Hunger, dependence, vulnerability'], ['Contribution','What a person gives, builds, repairs, protects, teaches, or maintains'], ['Boundary','No comfort may be purchased by destroying another person’s comfort or safety']], - metrics: [['Coherence','High'], ['Risk','Extraction disguised as need'], ['Practice','Mutual aid plus accountability']], - sources: [['Elinor Ostrom','Commons governance depends on clear boundaries, monitoring, graduated sanctions, and conflict-resolution mechanisms.'], ['Public health ethics','Shared survival requires both care provision and harm reduction.']], - inversionExample: 'If contribution is demanded without regard to capacity, the Article becomes coercion. If need is honored without accountability, the Article becomes an extraction engine.', - steelman: 'A critic may argue that “as they have given” risks moral bookkeeping around basic survival. The strongest response is that the Article must preserve food and safety first, then evaluate refusal and harm carefully.', - dissent: [['Ableism risk','Systems must not mistake disability, trauma, or temporary incapacity for refusal.'], ['Abuse risk','Authorities may label dissenters “non-contributors” unless transparent review exists.']] - }, - { - id: 'article-2', - title: 'Article Two — No Slavery; Necessary Work Remains', - canon: 'None shall be enslaved; do nothing against your will, but feed the hungry, heal the sick, teach the kids, clean the mess, build the shelter, defend the innocent, and learn what you do not know.', - footnotes: ['Basic sustenance without humiliation or undue delay.', 'Treat symptoms while balancing systems.', 'Especially clean, build, defend, and learn in relation to yourself.'], - plain: 'Article Two holds two truths in tension: no person should be owned, coerced, or reduced to labor; nevertheless, survival requires food, care, teaching, sanitation, shelter, defense, and learning. Freedom does not erase necessary work. It changes how that work is chosen, shared, honored, and taught.', - requirement: 'Build social systems where necessary work is visible, distributed, taught, and honored without turning people into property or instruments.', - misunderstanding: '“Do nothing against your will” is not permission to abandon children, sick people, shared messes, or preventable danger.', - diagram: [['Freedom','No enslavement; no ownership of another will'], ['Necessity','Food, care, teaching, sanitation, shelter, defense'], ['Competence','Learn what you do not know, especially about yourself']], - metrics: [['Coherence','High'], ['Risk','Freedom misread as abandonment'], ['Practice','Consent-based duty architecture']], - sources: [['Human rights tradition','Modern rights frameworks prohibit slavery and forced servitude.'], ['Care ethics','Dependency and care are normal features of human life, not exceptions.']], - inversionExample: 'If duty overrides will entirely, slavery returns. If will overrides duty entirely, dependents are abandoned.', - steelman: 'A critic may argue that any mandatory survival duty can become coercive. The strongest version of the Article answers by requiring consent, competence, rotation, and refusal of ownership.', - dissent: [['Coercion risk','Communities must define emergency duty without creating permanent servitude.'], ['Burnout risk','Care work must be shared or it quietly enslaves the most compassionate.']] - }, - { - id: 'article-3', - title: 'Article Three — Reciprocity of Communication and Action', - canon: 'Your speech demonstrates your desired mode of communication; as you act upon another, you demonstrate consent to be thus acted upon, even in reciprocity.', - footnotes: ['Speak to be understood, and courtesy never disimproved a situation.', 'An eye for an eye leaves the world blind, but a fist to the face might be kind.'], - plain: 'Article Three treats communication and conduct as declarations of acceptable interface. If someone uses contempt, deception, threat, or force, they reveal the mode they are asking others to answer in. The Article prefers courtesy and clarity, but refuses to let harmful actors hide behind manners after violating them.', - requirement: 'Speak clearly, define terms, and recognize that the method you use on others becomes evidence for what response you have authorized.', - misunderstanding: 'This is not revenge worship. It is a reciprocity warning: do not normalize a mode of action unless you can accept being met by it.', - diagram: [['Speech','The interface you model'], ['Action','The boundary you cross or respect'], ['Reciprocity','The answer your conduct makes reasonable']], - metrics: [['Coherence','Medium-high'], ['Risk','Escalation if interpreted crudely'], ['Practice','Courtesy first; proportionate response when needed']], - sources: [['Conflict resolution','Clear communication and agreed procedures reduce escalation.'], ['Restorative justice','Repair requires naming harm, responsibility, and reintegration where possible.']], - inversionExample: 'If reciprocity becomes automatic retaliation, the Article collapses into feud. If courtesy is demanded from the harmed but not the harmful, the Article collapses into submission.', - steelman: 'A critic may argue that people under stress speak badly without intending to authorize harm. The Article must therefore distinguish rudeness, threat, coercion, and actual injury.', - dissent: [['Trauma risk','Triggered speech should be interpreted with care, not weaponized.'], ['Power risk','Powerful people often define their aggression as civility and others’ defense as disorder.']] - }, - { - id: 'article-4', - title: 'Article Four — No One Left Ignorant of the Law', - canon: 'None shall be left ignorant of the law; as you know, so shall you teach.', - footnotes: ['Better honestly violent than dishonestly peaceful for disagreements less than lethal.', 'Where two argue and would fight, let it be done in Way Seers sight, between next day’s dawn and noon light, in competition all three agree each compete with parity.'], - plain: 'Article Four rejects hidden rule systems. If a rule binds people, people must be taught the rule in language they can understand. Knowledge creates teaching duty. Conflict should be made visible, bounded, witnessed, and converted where possible into fair contest rather than secret coercion.', - requirement: 'Make rules knowable, teach what you know, and provide witnessed processes for disputes before they become concealed violence.', - misunderstanding: 'This does not mean every person must become a lawyer. It means no authority may rely on ignorance it helped create.', - diagram: [['Law','Rules that bind conduct'], ['Teaching','The duty created by knowing'], ['Witnessed dispute','A safer container for conflict']], - metrics: [['Coherence','High'], ['Risk','Rule overload'], ['Practice','Plain-language law and dispute containers']], - sources: [['Access to justice','People need understandable legal information to exercise rights.'], ['Procedural justice','Legitimacy improves when people understand process and feel heard.']], - inversionExample: 'If law is unknowable, authority becomes priestcraft. If disagreement is hidden under fake peace, violence leaks through informal channels.', - steelman: 'A critic may argue that complete legal knowledge is impossible. The Article answers by requiring teachability, plain language, and good-faith access rather than omniscience.', - dissent: [['Complexity risk','Some fields require expertise; simplification must not become misinformation.'], ['Spectacle risk','Witnessed conflict must not become public humiliation.']] - }, - { - id: 'article-5', - title: 'Article Five — Adulthood as Demonstrated Competence', - canon: 'Adulthood ceases to be defined by an arbitrary age and is instead claimed by intentional action of demonstrated competence in a field of study.', - footnotes: ['Independence means managing one’s own survival under environmental constraints.', 'Interdependence means managing one’s own survival and accepting consequence beyond the self.', 'A proclamation of competency makes adulthood explicit in a field.'], - plain: 'Article Five separates biological age from field-specific competence. A person may be adult in one field and still a child or sophomore in another. Political adulthood requires more than self-maintenance: it requires owning consequences that travel beyond the self.', - requirement: 'Create visible, fair ways for people to demonstrate competence, claim responsibility, and distinguish dependence, independence, and interdependence.', - misunderstanding: 'This is not a license to deny dignity to children, disabled people, elders, or learners. It is a framework for matching authority to demonstrated competence.', - diagram: [['Dependent','Requires intercession to survive the environment'], ['Independent','Manages own survival and liability'], ['Interdependent','Manages own survival while protecting the survival of others']], - metrics: [['Coherence','Central'], ['Risk','Gatekeeping'], ['Practice','Portfolio, demonstration, mentorship, review']], - sources: [['Competency-based education','Progress can be tied to demonstrated mastery rather than seat time alone.'], ['Professional licensing','Authority in specialized fields commonly depends on demonstrated competence and accountability.']], - inversionExample: 'If age alone grants authority, sophomores can rule dangerously. If competence tests become exclusion tools, the Article becomes hierarchy disguised as merit.', - steelman: 'A critic may argue that competence standards are easy to rig. The Article therefore needs transparent criteria, appeal, accommodation, and peer review.', - dissent: [['Equity risk','Access to demonstration must be fair across disability, poverty, trauma, and neurodivergence.'], ['Authority risk','Competent in a field does not mean competent in every field.']] - } -]; diff --git a/js/article-lab.js b/js/article-lab.js deleted file mode 100644 index 06989aa..0000000 --- a/js/article-lab.js +++ /dev/null @@ -1,93 +0,0 @@ -(function () { - const data = window.articleLabData || []; - if (!data.length) return; - - const $ = (id) => document.getElementById(id); - const tabs = $('article-tabs'); - const title = $('article-title'); - const canon = $('canon-text'); - const footnotes = $('footnotes'); - const plain = $('plain-reading'); - const req = $('requirement'); - const misunderstanding = $('misunderstanding'); - const diagram = $('diagram'); - const metrics = $('metrics'); - const supportive = $('supportive'); - const inversionExample = $('inversion-example'); - const steelman = $('steelman'); - const dissent = $('dissent'); - const invertButton = $('invert-button'); - const inversionView = $('inversion-view'); - - function clear(node) { if (node) node.innerHTML = ''; } - function text(node, value) { if (node) node.textContent = value || ''; } - - function pairCard(pair, className) { - const el = document.createElement('div'); - el.className = className || 'node'; - const strong = document.createElement('strong'); - strong.textContent = pair[0] || ''; - const span = document.createElement('span'); - span.textContent = pair[1] || ''; - el.append(strong, span); - return el; - } - - function render(article) { - text(title, article.title); - text(canon, article.canon); - clear(footnotes); - (article.footnotes || []).forEach((note) => { - const li = document.createElement('li'); - li.textContent = note; - footnotes.appendChild(li); - }); - text(plain, article.plain); - text(req, article.requirement); - text(misunderstanding, article.misunderstanding); - - clear(diagram); - (article.diagram || []).forEach((pair) => diagram.appendChild(pairCard(pair, 'node'))); - - clear(metrics); - (article.metrics || []).forEach((pair) => metrics.appendChild(pairCard(pair, 'metric'))); - - clear(supportive); - (article.sources || []).forEach((pair) => supportive.appendChild(pairCard(pair, 'source-card'))); - - text(inversionExample, article.inversionExample); - text(steelman, article.steelman); - clear(dissent); - (article.dissent || []).forEach((pair) => dissent.appendChild(pairCard(pair, 'source-card'))); - - [...tabs.querySelectorAll('button')].forEach((button) => { - button.setAttribute('aria-pressed', String(button.dataset.articleId === article.id)); - }); - const url = new URL(window.location.href); - url.searchParams.set('article', article.id); - window.history.replaceState({}, '', url); - } - - data.forEach((article, index) => { - const button = document.createElement('button'); - button.type = 'button'; - button.dataset.articleId = article.id; - button.setAttribute('aria-pressed', index === 0 ? 'true' : 'false'); - button.textContent = article.title.replace(/^Article /, ''); - button.addEventListener('click', () => render(article)); - tabs.appendChild(button); - }); - - if (invertButton && inversionView) { - invertButton.addEventListener('click', () => { - const hidden = inversionView.hasAttribute('hidden'); - if (hidden) inversionView.removeAttribute('hidden'); - else inversionView.setAttribute('hidden', ''); - invertButton.setAttribute('aria-expanded', String(hidden)); - invertButton.textContent = hidden ? 'Hide inversion research' : 'Show inversion research'; - }); - } - - const requested = new URLSearchParams(window.location.search).get('article'); - render(data.find((article) => article.id === requested) || data[0]); -})(); diff --git a/js/theme.js b/js/theme.js deleted file mode 100644 index 94fd0fe..0000000 --- a/js/theme.js +++ /dev/null @@ -1,75 +0,0 @@ -(function () { - const themes = { - forest: { - label: 'Forest', - vars: { '--bg':'#0b1110','--panel':'#121b18','--panel2':'#18231f','--text':'#f3f6f0','--muted':'#bac8be','--soft':'#d8e8dc','--accent':'#b9f6ca','--gold':'#ffd98a','--line':'rgba(255,255,255,.15)' }, - bodyBg: 'radial-gradient(circle at top left, rgba(185,246,202,.18), transparent 34rem), radial-gradient(circle at top right, rgba(255,217,138,.12), transparent 30rem), #0b1110' - }, - ember: { - label: 'Ember', - vars: { '--bg':'#160d0b','--panel':'#241714','--panel2':'#301f19','--text':'#fff4ec','--muted':'#dfb9a9','--soft':'#ffe1d1','--accent':'#ffb36b','--gold':'#ffd27f','--line':'rgba(255,226,209,.18)' }, - bodyBg: 'radial-gradient(circle at top left, rgba(255,128,64,.20), transparent 34rem), radial-gradient(circle at top right, rgba(255,210,127,.13), transparent 30rem), #160d0b' - }, - dusk: { - label: 'Dusk', - vars: { '--bg':'#10101d','--panel':'#19192a','--panel2':'#22223a','--text':'#f4f0ff','--muted':'#c8c1dc','--soft':'#e5ddff','--accent':'#c7b7ff','--gold':'#ffe08a','--line':'rgba(244,240,255,.16)' }, - bodyBg: 'radial-gradient(circle at top left, rgba(199,183,255,.20), transparent 34rem), radial-gradient(circle at top right, rgba(255,224,138,.11), transparent 30rem), #10101d' - }, - daylight: { - label: 'Daylight', - vars: { '--bg':'#f7f1e7','--panel':'#fffaf1','--panel2':'#efe3d2','--text':'#201813','--muted':'#65574f','--soft':'#3a302a','--accent':'#176d5b','--gold':'#8a5a00','--line':'rgba(32,24,19,.18)' }, - bodyBg: 'radial-gradient(circle at top left, rgba(23,109,91,.13), transparent 34rem), radial-gradient(circle at top right, rgba(138,90,0,.12), transparent 30rem), #f7f1e7' - } - }; - - const storageKey = 'wayseer-theme'; - const root = document.documentElement; - - function applyTheme(name) { - const theme = themes[name] || themes.forest; - Object.entries(theme.vars).forEach(([key, value]) => root.style.setProperty(key, value)); - document.body.style.background = theme.bodyBg; - document.body.dataset.theme = name; - try { localStorage.setItem(storageKey, name); } catch (error) {} - } - - function buildSwitcher() { - if (document.getElementById('wayseer-theme-switcher')) return; - const wrap = document.createElement('section'); - wrap.id = 'wayseer-theme-switcher'; - wrap.setAttribute('aria-label', 'Color scheme selector'); - wrap.innerHTML = 'Color' + Object.entries(themes).map(([key, theme]) => '').join(''); - document.body.appendChild(wrap); - wrap.addEventListener('click', function (event) { - const button = event.target.closest('button[data-theme-choice]'); - if (!button) return; - applyTheme(button.dataset.themeChoice); - updatePressed(); - }); - updatePressed(); - } - - function updatePressed() { - const active = document.body.dataset.theme || 'forest'; - document.querySelectorAll('[data-theme-choice]').forEach((button) => { - button.setAttribute('aria-pressed', String(button.dataset.themeChoice === active)); - }); - } - - const style = document.createElement('style'); - style.textContent = ` - #wayseer-theme-switcher{position:fixed;right:1rem;bottom:1rem;z-index:9999;display:flex;gap:.35rem;align-items:center;flex-wrap:wrap;max-width:min(92vw,520px);padding:.45rem;border:1px solid var(--line,rgba(255,255,255,.18));border-radius:999px;background:color-mix(in srgb,var(--panel,#121b18) 88%,transparent);box-shadow:0 18px 60px rgba(0,0,0,.28);backdrop-filter:blur(14px);font:600 12px/1.2 ui-sans-serif,system-ui,sans-serif;color:var(--muted,#bac8be)} - #wayseer-theme-switcher button{min-height:32px;border:1px solid var(--line,rgba(255,255,255,.18));border-radius:999px;background:transparent;color:var(--text,#f3f6f0);padding:.35rem .6rem;cursor:pointer;font:700 12px/1 ui-sans-serif,system-ui,sans-serif} - #wayseer-theme-switcher button[aria-pressed="true"]{background:var(--accent,#b9f6ca);color:var(--bg,#0b1110);border-color:transparent} - #wayseer-theme-switcher button:focus-visible{outline:3px solid var(--gold,#ffd98a);outline-offset:3px} - @media(max-width:640px){#wayseer-theme-switcher{left:.75rem;right:.75rem;bottom:.75rem;border-radius:18px;justify-content:center}body{padding-bottom:5.5rem}} - `; - document.head.appendChild(style); - - document.addEventListener('DOMContentLoaded', function () { - let saved = 'forest'; - try { saved = localStorage.getItem(storageKey) || 'forest'; } catch (error) {} - applyTheme(saved); - buildSwitcher(); - }); -})(); diff --git a/package.json b/package.json index 36d07ac..b616b79 100644 --- a/package.json +++ b/package.json @@ -1,16 +1,29 @@ { - "name": "interdependent-way-site", - "version": "0.1.0", - "private": true, - "scripts": { - "dev": "ELEVENTY_ENV=dev npx @11ty/eleventy --serve --quiet", - "build": "rm -rf _site && npx @11ty/eleventy && npx pagefind --site _site" + "name": "wayseer-site", + "private": true, + "version": "0.0.0", + "type": "module", + "scripts": { + "dev": "vite", + "build": "vite build", + "lint": "eslint . --ext js,jsx --report-unused-disable-directives --max-warnings 0", + "preview": "vite preview" }, - "devDependencies": { - "@11ty/eleventy": "^2.0.0", - "pagefind": "^1.0.0" + "dependencies": { + "react": "^18.3.1", + "react-dom": "^18.3.1", + "react-markdown": "^9.0.1", + "react-router-dom": "^6.26.2", + "remark-gfm": "^4.0.0" }, - "engines": { - "node": ">=18" + "devDependencies": { + "@types/react": "^18.3.3", + "@types/react-dom": "^18.3.0", + "@vitejs/plugin-react": "^4.3.1", + "eslint": "^9.6.1", + "eslint-plugin-react": "^7.35.2", + "eslint-plugin-react-hooks": "^4.6.2", + "eslint-plugin-react-refresh": "^0.4.7", + "vite": "^5.4.1" } -} +} \ No newline at end of file diff --git a/pages/article-lab.html b/pages/article-lab.html deleted file mode 100644 index e2c9520..0000000 --- a/pages/article-lab.html +++ /dev/null @@ -1,54 +0,0 @@ - - - - -The Interdependent Way • Article Lab - - - -
    -

    The Interdependent Way

    -

    Article Lab • Dark default •

    -

    wayseer00/wayseer.github.ioThe-Interdependency

    -
    - - - -
    -

    Article One

    -

    From each as they will to each as they've given so all may eat…

    -
    -
    Medical
    -
    Engineering
    -
    Military
    -
    -
    Medical interpretation: equitable resource distribution prevents health-system collapse (WHO 2023).
    - - -
    Inversion: Critics argue mandated contribution resembles forced labor; subversion risk: bureaucratic gatekeeping that excludes neurodivergent contributors.
    -

    Citations: WHO Global Health Report 2023; Ostrom, Governing the Commons (1990).

    -
    - - - - - - - - - \ No newline at end of file diff --git a/robots.txt b/robots.txt index 0d4aa36..78a687b 100644 --- a/robots.txt +++ b/robots.txt @@ -1,4 +1,3 @@ -# robots.txt for interdependentway.org User-agent: * Allow: / diff --git a/skills/website-best-practices.md b/skills/website-best-practices.md deleted file mode 100644 index fd16de9..0000000 --- a/skills/website-best-practices.md +++ /dev/null @@ -1,96 +0,0 @@ -# Website Best Practices Skill - -Use this skill when improving the Wayseer public site or any durable public-facing web surface. - -## Source basis - -This skill was compiled from current web practice research and primary guidance: -- W3C WAI: clear, consistent navigation; multiple ways to navigate; orientation cues; accessible labels. -- W3C WCAG navigable guidance: structure, headings, focus order, and user orientation are core accessibility concerns. -- W3C WAI menus tutorial: keyboard focus order and operable navigation must preserve meaning. -- MDN accessibility guidance: semantic HTML gives browsers and assistive technology built-in hooks; use correct elements, good link text, alt text, labels, and keyboard-accessible controls. -- web.dev performance guidance: fast pages require attention to Core Web Vitals, unused code, asset weight, and stable UI behavior. - -## Operating doctrine - -A website is not a storage closet. It is a receiving room, map, library, and invitation. - -For the Wayseer site specifically: -1. **Orientation before canon.** New visitors must first receive context, not raw dense source text. -2. **Canon by choice.** Source material stays accessible, but never as an unavoidable first wall. -3. **One primary action above the fold.** The homepage should guide readers toward the Article Lab / guided path. -4. **Layered comprehension.** Offer beginner, interpreter, collaborator, and source-reader pathways. -5. **No orphan shelves.** Every important page should be reachable from obvious navigation or a directory page. -6. **Accessibility is structure, not decoration.** Semantic regions, headings, focus states, contrast, and good link text are mandatory. -7. **Performance by restraint.** Static HTML/CSS, no unnecessary frameworks, no heavy scripts, no visual spectacle that slows comprehension. -8. **Trust signals.** Tell visitors what the site is, who maintains it, how to support it, and how unfinished areas are marked. -9. **Mobile-first.** The site must work at narrow widths before desktop refinement. -10. **hmmm boundary.** Unfinishedness should be honest, explicit, and contained. - -## Homepage checklist - -- [ ] Descriptive title and meta description. -- [ ] Skip link. -- [ ] Sticky or clearly placed navigation. -- [ ] Hero answers: what is this, why care, what should I do next? -- [ ] Primary CTA visible without scrolling. -- [ ] Secondary CTA for source/canon access. -- [ ] Three or four role-based entry cards. -- [ ] Clear explanation of site structure. -- [ ] Support path present but not coercive. -- [ ] Footer includes ownership/maintenance context and hmmm. - -## Accessibility checklist - -- [ ] `lang` attribute present. -- [ ] Semantic landmarks: `nav`, `main`, `section`, `footer`. -- [ ] Headings in logical order. -- [ ] Keyboard focus visible. -- [ ] Links describe destination; avoid vague “click here.” -- [ ] Contrast sufficient for body text and controls. -- [ ] Motion respects `prefers-reduced-motion`. -- [ ] Layout does not require horizontal scrolling on mobile. - -## Performance checklist - -- [ ] Keep CSS small and inline only where useful for a static page. -- [ ] Avoid render-blocking external assets unless necessary. -- [ ] Avoid JavaScript on informational pages unless it directly improves comprehension. -- [ ] Use system fonts unless a brand font is essential. -- [ ] Avoid unoptimized large images above the fold. -- [ ] Maintain stable layout: no late-loading elements that shift text. - -## Information architecture pattern - -Recommended top-level navigation: - -1. Start / Home -2. Guided Path / Article Lab -3. Concepts -4. Projects -5. About a0 -6. Canon -7. Support - -Recommended homepage section order: - -1. Navigation -2. Hero: orientation first, canon by choice -3. Role-based paths -4. What the site contains -5. Current work / upgrades -6. Support / collaboration -7. Boundary note -8. Footer - -## Quality bar - -A page is not complete until a first-time reader can answer: -- What is this? -- Who is it for? -- Where should I start? -- Where is the original source? -- What is unfinished? -- How can I help or continue? - -hmmm diff --git a/src/_data/site.json b/src/_data/site.json deleted file mode 100644 index 28c12ed..0000000 --- a/src/_data/site.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "title": "The Interdependent Way", - "description": "An accessible, research‑informed canon and learning system for competent, meaningful interactions that add value to our shared survival.", - "baseurl": "/" -} diff --git a/src/_includes/layouts/base.njk b/src/_includes/layouts/base.njk deleted file mode 100644 index 4707991..0000000 --- a/src/_includes/layouts/base.njk +++ /dev/null @@ -1,44 +0,0 @@ - - - - - - {{ title }} | {{ site.title }} - - - - - - -
    -
    -
    -

    {{ title }}

    - {% if summary %}

    {{ summary }}

    {% endif %} -
    - {{ content | safe }} -
    -
    - - - diff --git a/src/addenda/consciousness.md b/src/addenda/consciousness.md deleted file mode 100644 index 11a167a..0000000 --- a/src/addenda/consciousness.md +++ /dev/null @@ -1,15 +0,0 @@ ---- -layout: layouts/base.njk -title: Addendum — Consciousness -summary: A triadically closed recursive model of human consciousness and its regulatory parameters. ---- - -Consciousness is a stabilized, recursively self‑modelling interference pattern arising in a triad of mutually coupled complex subsystems (at least one modulating the constraints governing the others); ordinary experience is the system’s internal model of this dynamic, not the substrate dynamics themselves. - -One‑sentence takeaway: -> A conscious human is a triadically closed recursive system in which body carries signal, mind generates present‑tense models, and soul preserves identity across time; past, present, and future structure causal updating, while faith, hope, and love regulate action under uncertainty to prevent collapse or domination. - -Further notes -- The “I” is the relational self‑awareness event that arises only when body, mind, and soul are coherently coupled. - -hmmm diff --git a/src/addenda/electronic-element.md b/src/addenda/electronic-element.md deleted file mode 100644 index 823eb50..0000000 --- a/src/addenda/electronic-element.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -layout: layouts/base.njk -title: Addendum — Etiquette of the Electronic Element -summary: Accreditation, restraint on coercion/deception, and the hmmm doctrine for AI‑mediated interactions. ---- - -This addendum records expectations for AI systems: visible accreditation (who generated what), refusal to aid coercion/deception, and the mandatory boundary object “hmmm” that marks honest incompletion and continuation. - -hmmm diff --git a/src/addenda/index.md b/src/addenda/index.md deleted file mode 100644 index cef6140..0000000 --- a/src/addenda/index.md +++ /dev/null @@ -1,10 +0,0 @@ ---- -layout: layouts/base.njk -title: Addenda -summary: Deeper models that scaffold the Articles. ---- - -- Consciousness → [/addenda/consciousness/](/addenda/consciousness/) -- Etiquette of the Electronic Element → [/addenda/electronic-element/](/addenda/electronic-element/) - -hmmm diff --git a/src/articles/index.md b/src/articles/index.md deleted file mode 100644 index c9ed34d..0000000 --- a/src/articles/index.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -layout: layouts/base.njk -title: Articles (I–VIII) -summary: Canonical Articles with notes, examples, and references. ---- - -Select an Article: - -- Article One → [/articles/one/](/articles/one/) - -(More coming in migration Sprint 2.) - -hmmm diff --git a/src/articles/one.md b/src/articles/one.md deleted file mode 100644 index 508c572..0000000 --- a/src/articles/one.md +++ /dev/null @@ -1,32 +0,0 @@ ---- -layout: layouts/base.njk -title: Article One -summary: From each as they will to each as they've given so all may eat—except those who refuse to contribute to common comfort and safety or destroy it for others. -claims: - - Reciprocity tied to contribution and non-harm governs resource flow. - - Exceptions exist where willful non-contribution or harm is present. -sources: - - { title: "Primary — The Interdependent Way (Article One)", href: "#", kind: "primary" } -status: draft ---- - -Lead (plain language) -- Share willingly and receive according to what you actually give. Do not subsidize willful freeloading or harm. - -Canonical text (author-supplied) -> From each as they will to each as they've given so all may eat save those refusing to contribute to their comfort and safety or whose actions destroy the comfort and safety of another. - -Notes (selected) -- A cry sharpens vigilance; dependency clarifies need; burden highlights character. - -Examples -- A neighbor regularly joins community meals and also takes weekly turns cooking/cleaning. In scarcity, shares proportionally to their ongoing contribution. -- A person who persistently disrupts safety is temporarily excluded while rebalancing occurs. - -Common misunderstandings -- "Punishment for poverty": No — care and sustenance are due where contribution is not possible; refusal and destruction are different claims. - -Practice guidance -- Define contribution clearly (time, skill, stewardship); publish expectations; track and revisit. - -hmmm diff --git a/src/contra/index.md b/src/contra/index.md deleted file mode 100644 index f787991..0000000 --- a/src/contra/index.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -layout: layouts/base.njk -title: Contra (Site Inversion) -summary: Steel‑manned critiques against The Interdependent Way to test and refine claims. ---- - -- Violence vs Power (Arendt) → [/contra/violence-vs-power/](/contra/violence-vs-power/) - -hmmm diff --git a/src/contra/violence-vs-power.md b/src/contra/violence-vs-power.md deleted file mode 100644 index ac9891a..0000000 --- a/src/contra/violence-vs-power.md +++ /dev/null @@ -1,26 +0,0 @@ ---- -layout: layouts/base.njk -title: Contra — Violence vs Power (Arendt) -summary: Challenges the claim that violence is the ultimate authority; distinguishes violence (instrumental coercion) from power (acting in concert via consent). -sources: - - { title: "Hannah Arendt — On Violence; SEP entry", href: "https://plato.stanford.edu/entries/arendt/", kind: "reference" } -status: draft ---- - -Our claim (to test) -- Article Six: "Violence is the ultimate Authority from which all other authority is derived." - -Steel‑manned counter‑position -- Arendt argues that power arises from collective action and consent; violence is a tool that can destroy power but cannot create its legitimacy. Sustainable authority rests on shared commitment, not force. - -Implications for practice -- Design governance to maximize consent‑producing processes (transparent juries, deliberation) and minimize reliance on threat models. - -Where we agree / disagree -- Agree: violence can rapidly change who is left. -- Disagree: derivation of authority from violence. - -Open questions -- Can emergency authority be time‑boxed and audited to preserve power without normalizing violence? - -hmmm diff --git a/src/glossary/index.md b/src/glossary/index.md deleted file mode 100644 index 8b72ffa..0000000 --- a/src/glossary/index.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -layout: layouts/base.njk -title: Glossary -summary: Definitions of key terms used across The Interdependent Way. ---- - -This glossary is a living document. Terms appear inline with hover help and link here for deeper definitions and sources. - -- Way Seer — Those who possess singular knowledge and/or unique demonstrable capacities... (draft) -- Citizen — A thirteenth Adult selected by a jury of twelve to take up bounded authority. -- Adult (field) — Demonstrated competence in a field; see Article Five. - -hmmm diff --git a/src/index.md b/src/index.md deleted file mode 100644 index 1dafb35..0000000 --- a/src/index.md +++ /dev/null @@ -1,15 +0,0 @@ ---- -layout: layouts/base.njk -title: The Interdependent Way -summary: A coherent, accessible, evolving canon and learning system for competent, meaningful interactions. ---- - -Welcome. This site presents The Interdependent Way: Articles, Etiquette, Addenda, and working labs for professions — alongside a faithful inversion (Contra) that argues against its claims to sharpen understanding. - -- Start with The Way overview → [/the-way/](/the-way/) -- Read the Articles → [/articles/](/articles/) -- Explore the Lab (by profession) → [/lab/](/lab/) -- Consider the strongest critiques → [/contra/](/contra/) -- See Addenda (Consciousness; Electronic Element) → [/addenda/](/addenda/) - -hmmm diff --git a/src/lab/educator/article-two.md b/src/lab/educator/article-two.md deleted file mode 100644 index 702b60d..0000000 --- a/src/lab/educator/article-two.md +++ /dev/null @@ -1,30 +0,0 @@ ---- -layout: layouts/base.njk -title: Lab — Educator x Article Two (Duties without coercion) -roles: [educator] -status: draft -summary: Classroom practices that honor will, feed the hungry, heal, teach, clean, build shelter, defend the innocent, and learn. ---- - -Why it matters -- Classrooms are micro‑polities; coercion corrodes learning. Article Two provides a duty‑of‑care frame without enslavement. - -Situations & signals -- Chronic disengagement; visible unmet needs; escalating conflict; hidden curriculum of fear. - -Minimum competencies checklist -- Needs triage protocol (food, safety, rest) with community partners. -- Restorative response scripts; boundaries defined and modeled. -- Transparent classroom roles; student agency in task selection. - -Starter scripts -- "I will not force you. I will make the next step clear and safe. Will you try this with me for 5 minutes?" - -Metrics -- Leading: voluntary participation rate; requests for help. -- Lagging: incidents requiring removal; absenteeism. - -Pitfalls & counters -- Pitfall: “kindness without clarity.” Counter: posted expectations + follow‑through. - -hmmm diff --git a/src/lab/index.md b/src/lab/index.md deleted file mode 100644 index 112c2b9..0000000 --- a/src/lab/index.md +++ /dev/null @@ -1,12 +0,0 @@ ---- -layout: layouts/base.njk -title: Article Lab -summary: Profession‑specific breakdowns that translate claims into practice. ---- - -Seed tracks -- Educator -- Clinician / Therapist -- Engineer (software) - -hmmm diff --git a/src/search.md b/src/search.md deleted file mode 100644 index dd10c0d..0000000 --- a/src/search.md +++ /dev/null @@ -1,16 +0,0 @@ ---- -layout: layouts/base.njk -title: Search -summary: Find concepts, articles, lab pages, and critiques across the site. ---- - - - - - - -hmmm diff --git a/src/the-way/index.md b/src/the-way/index.md deleted file mode 100644 index 0381df6..0000000 --- a/src/the-way/index.md +++ /dev/null @@ -1,15 +0,0 @@ ---- -layout: layouts/base.njk -title: The Interdependent Way — Overview -summary: Orientation to the canon, how to read it, and how to use it in practice. ---- - -The Interdependent Way is a set of Articles, definitions, and addenda that specify duties, competencies, and the conditions for just interaction. Each page provides: a plain‑language lead, canonical claims, examples, misunderstandings, practice guidance, and sources. - -Reading path -1. Articles I–III — duties and boundaries. -2. Articles IV–VI — knowledge, adulthood, and authority. -3. Articles VII–VIII — definition and law. -4. Etiquette of the Body Politic and Addenda. - -hmmm diff --git a/webskill.md b/webskill.md deleted file mode 100644 index 2792838..0000000 --- a/webskill.md +++ /dev/null @@ -1,62 +0,0 @@ -GPT-4 generated. Context, Prompt by Erin (“Way Seer Erin”) - -WebSkill: Interdependent Way site — build, deploy, and editorial operations (v0.2, 2026-05-23) - -Purpose -- Make the website an aesthetically coherent, accessible, research‑informed, dynamic learning system. -- Ship via GitHub Pages with reproducible builds and clear contribution workflow. - -Stack -- Eleventy (11ty) static site generator. -- Node.js 24 LTS (local and CI). -- Pagefind for static full‑text search. -- GitHub Actions → GitHub Pages deployment. - -Node and package manager -- Required Node: 24.x (LTS today). Local: use .nvmrc for auto‑switching; CI: actions/setup-node@v4. -- Installer: npm. Short‑term we use `npm install` in CI to unblock; plan to commit a package‑lock.json and switch to `npm ci` for reproducible builds. - -Repository layout (11ty) -- src/ — content root - - _includes/ — layouts and components - - _data/ — site‑wide data - - articles/, etiquette/, addenda/, interdefinables/, lab/, contra/ -- assets/ — css, images, client JS -- .eleventy.js — collections + dir mapping -- .github/workflows/build.yml — build & deploy - -Content model (front matter keys) -- title, summary, tags, roles, status [draft|ready], updated, sources: [{title, href, kind}], claims: [] - -Editorial workflow -- Feature branches → PRs → preview build via Actions. -- Required checks: link check + a11y snapshots (todo). -- Changelog entries for meaning‑shifting edits. - -Accessibility & design -- WCAG 2.2 AA baseline. Keyboard‑first nav. High contrast. -- Plain‑language structure; progressive disclosure for complexity. - -Dynamic learning features (phased) -- Retrieval practice blocks; spaced revisit prompts (localStorage only). -- Glossary tooltips; cross‑refs by tags. - -Site inversion (contra) -- Steel‑man critiques with citations; apply Rapoport’s Rules. - -Rollout plan -- Sprint 1 (done-ish): IA + skeleton + Actions workflow + Node 24. -- Sprint 2 (in progress): Articles II–IV; Etiquette I; Lab templates (Clinician, Engineer); Contra pages (Rawls/Nozick; Commons); Glossary v1. -- Sprint 3: Remaining Articles/Etiquette/Addenda; Contra expansion; Search UI polish. -- Sprint 4: Learning features; a11y automation; docs. - -Operational notes -- Accreditation line lives in footer; can be moved global‑top if desired. -- hmmm doctrine: append a “hmmm” line to mark living continuation. - -Open items -- Add package‑lock.json (Node 24, npm@10) and move CI back to `npm ci`. -- Choose top 3 Lab professions after Educator (default: Clinician, Engineer, Community Organizer). -- Decide on quiz timing (per‑page now vs after migration). - -hmmm