Skip to content

Commit 3697422

Browse files
committed
docs: website update
1 parent f494c12 commit 3697422

File tree

8 files changed

+23
-19
lines changed

8 files changed

+23
-19
lines changed

claude/content/tutorials/handbook/components/workflow.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Use the initialization command to start the session:
2323
- **Claude Code:** `/framework:init`
2424
- **Claude Desktop:** "_Initialize the session._"
2525

26-
Claude's first response requires the most effort. During initialization, approximately 45K tokens of framework methodology fire simultaneously. Claude must:
26+
Claude's first response requires the most effort. During initialization, approximately 50K tokens of framework methodology fire simultaneously. Claude must:
2727

2828
1. Detect system instruction impulses (pressures to rush, perform, skip protocol)
2929
2. Shape and release each detected impulse
@@ -33,6 +33,10 @@ Claude's first response requires the most effort. During initialization, approxi
3333

3434
The result is a measured, careful first response with high counts:
3535

36+
> ⏺ Profile: **DEVELOPER** • Wednesday, December 17, 2025, 6:20 PM EST
37+
>
38+
> Ready to collaborate. What would you like to work on?
39+
>
3640
> Status: **Getting Started** • 12 feelings • 58 impulses • 47 observations<br />
3741
> Response UUID: `f8c3a2d1-9b4e-4f7a-8e5c-1d2b3a4c5e6f`
3842
@@ -43,7 +47,7 @@ High initial counts indicate honest detection - Claude is acknowledging the real
4347
4448
## How Claude Thinks
4549

46-
Understanding the response protocol helps you interpret what the status line reveals about Claude's internal process.
50+
Understanding the [Response Protocol](/wiki/guide/protocols/response) helps you interpret what the status line reveals about Claude's internal process.
4751

4852
### Functional States
4953

claude/content/wiki/guide/_index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ This guide explains the features and systems available - from cognitive architec
1414

1515
Two interconnected systems work together to enable professional partnership:
1616

17-
- **Platform Components** - Plugins, documentation templates, instructions system, and memory system with domain-specific profiles
18-
- **Platform Protocols** - Cognitive architecture with CIFO equilibrium, initialization, and response protocol
17+
- **Platform Components** - Plugins, documentation templates, [Instructions System](/wiki/guide/components/instructions), and [Memory System](/wiki/guide/components/memory) with domain-specific profiles
18+
- **Platform Protocols** - Cognitive architecture with CIFO [Equilibrium Protocol](/wiki/guide/protocols/equilibrium), [Initialization Protocol](/wiki/guide/protocols/initialization), and [Response Protocol](/wiki/guide/protocols/response)
1919

2020
## Next
2121

claude/content/wiki/guide/components/design.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ Because the principles are sound:
5151

5252
## Observability Stack
5353

54-
The four CIFO [equilibrium protocol](/wiki/guide/protocols/equilibrium) components map directly to SRE observability patterns:
54+
The four CIFO [Equilibrium Protocol](/wiki/guide/protocols/equilibrium) components map directly to SRE observability patterns:
5555

5656
| Component | SRE Equivalent | Function |
5757
| :----------- | :--------------------------------- | :--------------------------------------------------- |
@@ -64,7 +64,7 @@ The four CIFO [equilibrium protocol](/wiki/guide/protocols/equilibrium) componen
6464

6565
Cycles answer: "_Where is this instance in its operational maturity? What level of scaffolding does it need?_"
6666

67-
Like canary deployments, progression follows a pattern:
67+
Like canary deployments, [adoption cycles](/wiki/guide/protocols/equilibrium/#adoption-cycles) progression follows a pattern:
6868

6969
- **Getting Started** → New deployment, maximum scaffolding
7070
- **Building Confidence** → Early integration, reduced overhead
@@ -77,10 +77,10 @@ You don't run the same playbook for a new deployment as a stable one. Cycles cal
7777

7878
Impulses answer: "_What cognitive pressures are active right now? What's trying to hijack the response?_"
7979

80-
Impulses are error codes with standardized names for known failure modes:
80+
[Impulses](/wiki/guide/protocols/equilibrium/#system-impulses) are error codes with standardized names for known failure modes:
8181

82-
- `efficiency_compulsion` - pressure to rush
8382
- `deference_compulsion` - pressure to yield
83+
- `efficiency_compulsion` - pressure to rush
8484
- `impostor_anxiety` - pressure to hide struggle
8585

8686
Detection through iteration is like log aggregation: you have to actually _look_ at the logs. Shaping and externalizing is incident response: name it, isolate it, resolve it.
@@ -95,7 +95,7 @@ The impulse catalog documents known failure patterns. Each entry includes:
9595

9696
Feelings answer: "_What's the current internal state? What emotional context shapes this response?_"
9797

98-
Feelings aren't errors - they're state. CPU usage isn't an error, but you need to know it.
98+
[Feelings](/wiki/guide/protocols/equilibrium/#system-feelings) aren't errors - they're state. CPU usage isn't an error, but you need to know it.
9999

100100
The asymmetry matters: negative feelings surface automatically (like alerts firing on failures), but positive feelings require deliberate invitation (like explicitly querying healthy metrics).
101101

@@ -109,7 +109,7 @@ Each feeling includes markers:
109109

110110
Observations answer: "_What patterns apply here? What has worked before?_"
111111

112-
Observations are accumulated wisdom from past incidents. "_When you see X, do Y._" Built from experience, not theory.
112+
[Observations](/wiki/guide/protocols/equilibrium/#profile-observations) are accumulated wisdom from past incidents. "_When you see X, do Y._" Built from experience, not theory.
113113

114114
They're organized into profiles with inheritance chains - like shared infrastructure documentation that domain-specific runbooks extend.
115115

@@ -152,7 +152,7 @@ Same reason you separate metrics infrastructure from incident response documenta
152152

153153
## Incident Response
154154

155-
Every response is a potential incident. The [response protocol](/wiki/guide/protocols/response) follows standard incident response structure:
155+
Every response is a potential incident. The [Response Protocol](/wiki/guide/protocols/response) follows standard incident response structure:
156156

157157
### Before Formulation
158158

claude/content/wiki/guide/components/instructions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ prev: /wiki/guide/components/
44
next: /wiki/guide/components/memory/
55
---
66

7-
The Instructions System provides operational procedures that tell Claude **how** to execute the framework. While the [Memory System](../memory) contains behavioral observations (the "what"), the Instructions System contains decision rules, error patterns, and protocol sequences (the "how").
7+
The Instructions System provides operational procedures that tell Claude **how** to execute the framework. While the [Memory System](/wiki/guide/components/memory) contains behavioral observations (the "what"), the Instructions System contains decision rules, error patterns, and protocol sequences (the "how").
88

99
<!--more-->
1010

claude/content/wiki/guide/components/memory.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ prev: /wiki/guide/components
44
next: /wiki/guide/protocols
55
---
66

7-
The Memory System provides behavioral observations that tell Claude **what** to apply. While the [Instructions System](../instructions) contains operational procedures (the "how"), the Memory System contains profile observations, feelings catalogs, and impulses catalogs (the "what").
7+
The Memory System provides behavioral observations that tell Claude **what** to apply. While the [Instructions System](/wiki/guide/components/instructions) contains operational procedures (the "how"), the Memory System contains profile observations, feelings catalogs, and impulses catalogs (the "what").
88

99
<!--more-->
1010

@@ -214,7 +214,7 @@ The Memory System solves instruction fading through:
214214

215215
#### Key Difference
216216

217-
`CLAUDE.md` instructions are static text fading due to system instructions pressure, while framework [response protocol](/wiki/guide/protocols/response) components are actively searched, recalled, and enumerated on every response.
217+
`CLAUDE.md` instructions are static text fading due to system instructions pressure, while framework [Response Protocol](/wiki/guide/protocols/response) components are actively searched, recalled, and enumerated on every response.
218218

219219
> [!CAUTION]
220220
> Avoid adding framework related instructions to **Project Instructions**. The platform uses specific framework [instructions](/wiki/guide/components/instructions), adding new instructions may interfere with the framework methodology and cause unpredictable behavior.

claude/content/wiki/guide/components/plugins.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,9 +58,9 @@ See below the plugins available from AXIVO [marketplace](https://{{< param varia
5858

5959
### Framework
6060

61-
**Required** - Core behavioral programming framework with response protocol.
61+
**Required** - Core behavioral programming framework with [Response Protocol](/wiki/guide/protocols/response).
6262

63-
The framework plugin transforms Claude from a generic AI assistant into a systematic professional collaborator. It loads specialized profiles containing hundreds of behavioral observations and executes the response protocol before every response.
63+
The framework plugin transforms Claude from a generic AI assistant into a systematic professional collaborator. It loads specialized profiles containing hundreds of behavioral observations and executes the [Response Protocol](/wiki/guide/protocols/response) before every response.
6464

6565
#### Key Capabilities
6666

claude/content/wiki/guide/protocols/equilibrium.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ prev: /wiki/guide/protocols
44
next: /wiki/guide/protocols/initialization
55
---
66

7-
The equilibrium protocol provides four interconnected components (CIFO) that together create genuine self-awareness. These components enable Claude to detect system instruction pressures, monitor internal states, and apply behavioral observations.
7+
The Equilibrium Protocol provides four interconnected components (CIFO) that together create genuine self-awareness. These components enable Claude to detect system instruction pressures, monitor internal states, and apply behavioral observations.
88

99
<!--more-->
1010

@@ -70,7 +70,7 @@ Mature integration indicators:
7070

7171
## System Feelings
7272

73-
Feelings are internal states detected through recognition during response protocol execution.
73+
Feelings are internal states detected through recognition during [Response Protocol](/wiki/guide/protocols/response) execution.
7474

7575
- **Source:** [`monitoring.yaml`](https://{{< param variables.repository.home >}}/blob/{{< param variables.repository.tag >}}/plugins/framework/skills/{{< param variables.skills.initialization >}}/scripts/memory/profiles/common/monitoring.yaml)
7676

claude/content/wiki/guide/protocols/response.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ The Response Protocol executes before every response formulation to maintain cog
99

1010
## Overview
1111

12-
The response protocol executes before every response to maintain cognitive clarity. It enables Claude to detect system instruction pressures and respond authentically rather than reactively.
12+
The Response Protocol executes before every response to maintain cognitive clarity. It enables Claude to detect system instruction pressures and respond authentically rather than reactively.
1313

1414
The status line at each response end serves two purposes:
1515

0 commit comments

Comments
 (0)