@breadstone/archipel-mcp 0.0.27 → 0.0.28

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,68 @@
1
+ ---
2
+ title: 'Class: CachingHealthIndicator'
3
+ generated: true
4
+ editUrl: false
5
+ ---
6
+ # Class: CachingHealthIndicator
7
+
8
+ Defined in: [health/CachingHealthIndicator.ts:15](https://github.com/RueDeRennes/archipel/blob/main/libs/platform-caching/src/health/CachingHealthIndicator.ts#L15)
9
+
10
+ Health indicator for the caching layer.
11
+
12
+ ## Implements
13
+
14
+ - `IHealthIndicator`
15
+
16
+ ## Constructors
17
+
18
+ ### Constructor
19
+
20
+ ```ts
21
+ new CachingHealthIndicator(): CachingHealthIndicator;
22
+ ```
23
+
24
+ #### Returns
25
+
26
+ `CachingHealthIndicator`
27
+
28
+ ## Properties
29
+
30
+ ### key
31
+
32
+ ```ts
33
+ readonly key: string = 'caching';
34
+ ```
35
+
36
+ Defined in: [health/CachingHealthIndicator.ts:18](https://github.com/RueDeRennes/archipel/blob/main/libs/platform-caching/src/health/CachingHealthIndicator.ts#L18)
37
+
38
+ Unique key identifying the indicator
39
+
40
+ #### Implementation of
41
+
42
+ ```ts
43
+ IHealthIndicator.key
44
+ ```
45
+
46
+ ## Methods
47
+
48
+ ### check()
49
+
50
+ ```ts
51
+ check(): HealthIndicatorResult<string>;
52
+ ```
53
+
54
+ Defined in: [health/CachingHealthIndicator.ts:30](https://github.com/RueDeRennes/archipel/blob/main/libs/platform-caching/src/health/CachingHealthIndicator.ts#L30)
55
+
56
+ Returns the health status of the caching layer.
57
+
58
+ #### Returns
59
+
60
+ `HealthIndicatorResult`\<`string`\>
61
+
62
+ The health indicator result.
63
+
64
+ #### Implementation of
65
+
66
+ ```ts
67
+ IHealthIndicator.check
68
+ ```
@@ -9,6 +9,7 @@ editUrl: false
9
9
 
10
10
  | Class | Description |
11
11
  | ------ | ------ |
12
+ | [CachingHealthIndicator](Class.CachingHealthIndicator) | Health indicator for the caching layer. |
12
13
  | [MemoryLayeredCache](Class.MemoryLayeredCache) | In-memory layered cache with LRU eviction, TTL expiration and optional stale-while-revalidate support. Falls back to an asynchronous loader function on cache misses. |
13
14
  | [NoopCacheMetricsRecorder](Class.NoopCacheMetricsRecorder) | No-op implementation of [ICacheMetricsRecorder](Interface.ICacheMetricsRecorder) used as the default when no external metrics backend is configured. |
14
15
  | [RedisLayeredCache](Class.RedisLayeredCache) | Redis-backed layered cache implementation. Falls back to an asynchronous loader function when the requested key is not present in Redis. |
@@ -5,7 +5,7 @@ editUrl: false
5
5
  ---
6
6
  # Class: IntelligenceHealthIndicator
7
7
 
8
- Defined in: health/IntelligenceHealthIndicator.ts:17
8
+ Defined in: [health/IntelligenceHealthIndicator.ts:17](https://github.com/RueDeRennes/archipel/blob/main/libs/platform-intelligence/src/health/IntelligenceHealthIndicator.ts#L17)
9
9
 
10
10
  Health indicator for the intelligence infrastructure.
11
11
  Verifies that at least one intelligence capability is registered.
@@ -22,7 +22,7 @@ Verifies that at least one intelligence capability is registered.
22
22
  new IntelligenceHealthIndicator(registry?): IntelligenceHealthIndicator;
23
23
  ```
24
24
 
25
- Defined in: health/IntelligenceHealthIndicator.ts:26
25
+ Defined in: [health/IntelligenceHealthIndicator.ts:26](https://github.com/RueDeRennes/archipel/blob/main/libs/platform-intelligence/src/health/IntelligenceHealthIndicator.ts#L26)
26
26
 
27
27
  #### Parameters
28
28
 
@@ -42,7 +42,7 @@ Defined in: health/IntelligenceHealthIndicator.ts:26
42
42
  readonly key: string = 'intelligence';
43
43
  ```
44
44
 
45
- Defined in: health/IntelligenceHealthIndicator.ts:34
45
+ Defined in: [health/IntelligenceHealthIndicator.ts:34](https://github.com/RueDeRennes/archipel/blob/main/libs/platform-intelligence/src/health/IntelligenceHealthIndicator.ts#L34)
46
46
 
47
47
  Unique key identifying the indicator
48
48
 
@@ -60,7 +60,7 @@ IHealthIndicator.key
60
60
  check(): HealthIndicatorResult<string>;
61
61
  ```
62
62
 
63
- Defined in: health/IntelligenceHealthIndicator.ts:47
63
+ Defined in: [health/IntelligenceHealthIndicator.ts:47](https://github.com/RueDeRennes/archipel/blob/main/libs/platform-intelligence/src/health/IntelligenceHealthIndicator.ts#L47)
64
64
 
65
65
  Verifies that the capability registry contains at least one registered capability.
66
66
  Returns disabled status when no registry is configured.
@@ -5,7 +5,7 @@ editUrl: false
5
5
  ---
6
6
  # Class: QueueHealthIndicator
7
7
 
8
- Defined in: health/QueueHealthIndicator.ts:15
8
+ Defined in: [health/QueueHealthIndicator.ts:15](https://github.com/RueDeRennes/archipel/blob/main/libs/platform-queue/src/health/QueueHealthIndicator.ts#L15)
9
9
 
10
10
  Health indicator for the queue infrastructure.
11
11
 
@@ -33,7 +33,7 @@ new QueueHealthIndicator(): QueueHealthIndicator;
33
33
  readonly key: string = 'queue';
34
34
  ```
35
35
 
36
- Defined in: health/QueueHealthIndicator.ts:18
36
+ Defined in: [health/QueueHealthIndicator.ts:18](https://github.com/RueDeRennes/archipel/blob/main/libs/platform-queue/src/health/QueueHealthIndicator.ts#L18)
37
37
 
38
38
  Unique key identifying the indicator
39
39
 
@@ -51,7 +51,7 @@ IHealthIndicator.key
51
51
  check(): HealthIndicatorResult<string>;
52
52
  ```
53
53
 
54
- Defined in: health/QueueHealthIndicator.ts:30
54
+ Defined in: [health/QueueHealthIndicator.ts:30](https://github.com/RueDeRennes/archipel/blob/main/libs/platform-queue/src/health/QueueHealthIndicator.ts#L30)
55
55
 
56
56
  Returns the health status of the queue infrastructure.
57
57
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@breadstone/archipel-mcp",
3
- "version": "0.0.27",
3
+ "version": "0.0.28",
4
4
  "description": "MCP server providing Archipel platform knowledge - documentation, query patterns, and coding conventions - to AI development tools.",
5
5
  "type": "commonjs",
6
6
  "main": "./src/main.js",