@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.
Files changed (2) hide show
  1. package/README.md +29 -6
  2. 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 | [![npm](https://img.shields.io/npm/v/@framers/agentos?style=flat-square&logo=npm&label=)](https://www.npmjs.com/package/@framers/agentos) · [GitHub](https://github.com/framersai/agentos) |
121
+ | **@framers/agentos-extensions** | Official extension registry (45+ extensions) | [![npm](https://img.shields.io/npm/v/@framers/agentos-extensions?style=flat-square&logo=npm&label=)](https://www.npmjs.com/package/@framers/agentos-extensions) · [GitHub](https://github.com/framersai/agentos-extensions) |
122
+ | **@framers/agentos-extensions-registry** | Curated manifest builder | [![npm](https://img.shields.io/npm/v/@framers/agentos-extensions-registry?style=flat-square&logo=npm&label=)](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 | [![npm](https://img.shields.io/npm/v/@framers/agentos-skills-registry?style=flat-square&logo=npm&label=)](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) | [![npm](https://img.shields.io/npm/v/@framers/agentos-skills?style=flat-square&logo=npm&label=)](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) | [![npm](https://img.shields.io/npm/v/@framers/agentos-ext-pii-redaction?style=flat-square&logo=npm&label=)](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 | [![npm](https://img.shields.io/npm/v/@framers/agentos-ext-ml-classifiers?style=flat-square&logo=npm&label=)](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 | [![npm](https://img.shields.io/npm/v/@framers/agentos-ext-topicality?style=flat-square&logo=npm&label=)](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) | [![npm](https://img.shields.io/npm/v/@framers/agentos-ext-code-safety?style=flat-square&logo=npm&label=)](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 | [![npm](https://img.shields.io/npm/v/@framers/agentos-ext-grounding-guard?style=flat-square&logo=npm&label=)](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 `createPiiRedactionPack()` extension
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 { createPiiRedactionPack } from '@framers/agentos-ext-pii-redaction';
1620
- import { createMLClassifierPack } from '@framers/agentos-ext-ml-classifiers';
1621
- import { createTopicalityPack } from '@framers/agentos-ext-topicality';
1622
- import { createCodeSafetyPack } from '@framers/agentos-ext-code-safety';
1623
- import { createGroundingGuardPack } from '@framers/agentos-ext-grounding-guard';
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';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@framers/agentos",
3
- "version": "0.1.58",
3
+ "version": "0.1.59",
4
4
  "description": "Modular AgentOS orchestration library",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",