@framers/agentos 0.1.58 → 0.1.59
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.
- package/README.md +29 -6
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -113,6 +113,29 @@
|
|
|
113
113
|
|
|
114
114
|
---
|
|
115
115
|
|
|
116
|
+
## Ecosystem
|
|
117
|
+
|
|
118
|
+
| Package | Description | Links |
|
|
119
|
+
|---------|-------------|-------|
|
|
120
|
+
| **@framers/agentos** | Core orchestration runtime | [](https://www.npmjs.com/package/@framers/agentos) · [GitHub](https://github.com/framersai/agentos) |
|
|
121
|
+
| **@framers/agentos-extensions** | Official extension registry (45+ extensions) | [](https://www.npmjs.com/package/@framers/agentos-extensions) · [GitHub](https://github.com/framersai/agentos-extensions) |
|
|
122
|
+
| **@framers/agentos-extensions-registry** | Curated manifest builder | [](https://www.npmjs.com/package/@framers/agentos-extensions-registry) · [GitHub](https://github.com/framersai/agentos-extensions-registry) |
|
|
123
|
+
| **@framers/agentos-skills-registry** | 28+ curated SKILL.md files | [](https://www.npmjs.com/package/@framers/agentos-skills-registry) · [GitHub](https://github.com/framersai/agentos-skills-registry) |
|
|
124
|
+
| **@framers/agentos-skills** | Skills runtime loader (reads SKILL.md → agent prompt) | [](https://www.npmjs.com/package/@framers/agentos-skills) · [GitHub](https://github.com/framersai/agentos-skills) |
|
|
125
|
+
| **docs.agentos.sh** | Documentation site (Docusaurus) | [GitHub](https://github.com/framersai/agentos-live-docs) · [docs.agentos.sh](https://docs.agentos.sh) |
|
|
126
|
+
|
|
127
|
+
### Guardrail Extensions
|
|
128
|
+
|
|
129
|
+
| Package | What It Does | Links |
|
|
130
|
+
|---------|-------------|-------|
|
|
131
|
+
| **@framers/agentos-ext-pii-redaction** | Four-tier PII detection (regex + NLP + NER + LLM) | [](https://www.npmjs.com/package/@framers/agentos-ext-pii-redaction) · [Docs](https://docs.agentos.sh/extensions/built-in/pii-redaction) |
|
|
132
|
+
| **@framers/agentos-ext-ml-classifiers** | Toxicity, injection, jailbreak via ONNX BERT | [](https://www.npmjs.com/package/@framers/agentos-ext-ml-classifiers) · [Docs](https://docs.agentos.sh/extensions/built-in/ml-classifiers) |
|
|
133
|
+
| **@framers/agentos-ext-topicality** | Embedding-based topic enforcement + drift detection | [](https://www.npmjs.com/package/@framers/agentos-ext-topicality) · [Docs](https://docs.agentos.sh/extensions/built-in/topicality) |
|
|
134
|
+
| **@framers/agentos-ext-code-safety** | OWASP Top 10 code scanning (25 regex rules) | [](https://www.npmjs.com/package/@framers/agentos-ext-code-safety) · [Docs](https://docs.agentos.sh/extensions/built-in/code-safety) |
|
|
135
|
+
| **@framers/agentos-ext-grounding-guard** | RAG-grounded hallucination detection via NLI | [](https://www.npmjs.com/package/@framers/agentos-ext-grounding-guard) · [Docs](https://docs.agentos.sh/extensions/built-in/grounding-guard) |
|
|
136
|
+
|
|
137
|
+
---
|
|
138
|
+
|
|
116
139
|
## Quick Start
|
|
117
140
|
|
|
118
141
|
```bash
|
|
@@ -1509,7 +1532,7 @@ const config = await createTestAgentOSConfig();
|
|
|
1509
1532
|
await agent.initialize({ ...config, guardrailService: piiGuardrail });
|
|
1510
1533
|
```
|
|
1511
1534
|
|
|
1512
|
-
> **For production PII redaction**, use the built-in `
|
|
1535
|
+
> **For production PII redaction**, use the built-in `createPiiRedactionGuardrail()` extension
|
|
1513
1536
|
> instead of hand-rolled regex. It provides four-tier detection (regex + NLP + BERT NER +
|
|
1514
1537
|
> LLM-as-judge), streaming support, and configurable redaction styles. See
|
|
1515
1538
|
> [GUARDRAILS_USAGE.md](docs/GUARDRAILS_USAGE.md) for full examples.
|
|
@@ -1616,11 +1639,11 @@ import { SkillRegistry, SkillLoader } from '@framers/agentos/skills';
|
|
|
1616
1639
|
|
|
1617
1640
|
// Extension runtime helpers and built-in guardrail packs
|
|
1618
1641
|
import { SharedServiceRegistry } from '@framers/agentos';
|
|
1619
|
-
import {
|
|
1620
|
-
import {
|
|
1621
|
-
import {
|
|
1622
|
-
import {
|
|
1623
|
-
import {
|
|
1642
|
+
import { createPiiRedactionGuardrail } from '@framers/agentos-ext-pii-redaction';
|
|
1643
|
+
import { createMLClassifierGuardrail } from '@framers/agentos-ext-ml-classifiers';
|
|
1644
|
+
import { createTopicalityGuardrail } from '@framers/agentos-ext-topicality';
|
|
1645
|
+
import { createCodeSafetyGuardrail } from '@framers/agentos-ext-code-safety';
|
|
1646
|
+
import { createGroundingGuardrail } from '@framers/agentos-ext-grounding-guard';
|
|
1624
1647
|
|
|
1625
1648
|
// Deep imports (wildcard exports)
|
|
1626
1649
|
import { SomeType } from '@framers/agentos/core/safety/CircuitBreaker';
|