Prompts live in code. Playbooks live in docs. Rules live in someone’s head. Knowledge and behavior drift apart.
Pagenti turns scattered agent content into installable packages.
Pagenti packages the full agent content stack: what the agent knows, how it acts, and how both are classified.
What the agent knows.
Expert context, guidance, facts, and critical questions the agent uses to reason.
How the agent acts.
Instructions, prompts, rules, procedures, and playbooks that drive the agent’s behavior.
How content is classified.
The skillCode taxonomy that makes knowledge and execution searchable by type.
But instead of code modules, it ships Markdown knowledge and execution files.
@cognni/vendor-risk/ ├── pagenti.json // Package manifest ├── pagenti-lock.json // Dependency lockfile ├── content/ │ └── external-access-review.md // Knowledge Markdown ├── execution/ │ └── review-external-access.md // Instructions, prompts, rules ├── schemas/ └── assets/
{
"name": "@cognni/vendor-risk",
"version": "1.2.0",
"knowledge": [
{
"code": "external-access-review",
"path": "./content/external-access-review.md",
"skillCode": "riskKnowledge",
"role": ["ciso"]
}
],
"execution": [
{
"code": "review-external-access",
"path": "./execution/review-external-access.md",
"skillCode": "proceduralKnowledge",
"role": ["securityAnalyst"]
}
]
}
# External Access Review ## Purpose Help a security analyst evaluate whether external access is justified. ## Critical Questions - Who has access? - Why do they need it? - When should it end?
# Execution: Review External Access ## Instructions 1. Check the recipient domain against the allowed vendors list. 2. Require a documented internal data owner for the share. 3. Escalate unknown external access to the CISO immediately. 4. Auto-revoke access after 30 days unless exception is filed. ## Prompt You are a security analyst evaluating external access. Apply the rules above...
npm ships code packages. Pagenti ships agent content packages.
Create pagenti.json, then write knowledge in content/ and instructions, prompts, and rules in execution/.
Publish the package so other agents and teams can install the same versioned content.
Install content onto an app, agent, and domain — so each agent gets the right knowledge, prompts, rules, and playbooks.
pagenti search finds packages in the registry.
pagenti query retrieves installed knowledge or execution content for a running agent.
Every item can be labeled by role, domain, use case, tool, risk, regulation, and more — so agents retrieve only the content that fits the situation.
Knowledge gives the agent context. Execution gives it instructions, prompts, and rules.
import { createPagentiRuntimeFromEnv } from "@x12i/pagenti-runtime"; const runtime = createPagentiRuntimeFromEnv(); // findKnowledge retrieves expert context to inform the agent const items = await runtime.findKnowledge({ skillCode: "riskKnowledge", role: "ciso", domain: "security", }); // getExecution retrieves instructions, prompts, and rules ready for the agent loop const playbook = await runtime.getExecution( "proceduralKnowledge", "review-external-access" );
Pagenti is the package layer. Catalox is the governed data layer behind the registry.
Seed Catalox once. Requires @x12i/catalox@5.1.0.
Pack and publish validated packages.
Install packages onto specific app/agent targets.
Query runtime content via SDK.
Pagenti packages can be private, team-scoped, or public. Use them for internal agent capabilities, reusable industry packs, customer-specific content, or open-source playbooks.
v2.1.0 • Updated 2 days ago
Core security principles, standard access review playbooks, and compliance baselines for general agent usage.
v1.2.0 • Updated 1 week ago
Internal Cognni procedures for evaluating third-party vendors, data sharing agreements, and external access requests.
v3.0.0 • Updated 3 weeks ago
Standardized execution instructions for tool-calling agents, reflection loops, and autonomous task planning.
v1.0.1 • Updated 1 month ago
Objection handling, discovery guides, qualification flows, pricing logic, and vertical-specific messaging.
Learn how pagenti.json maps content/ and execution/ files into installable agent content packages.
Learn how role, domain, use case, tool, risk, and skillCode help agents find the right content.
Query installed knowledge and execution content from your agent runtime.
See how Catalox stores the registry, packages, versions, installs, and runtime content.
Turn scattered prompts, rules, playbooks, and expert knowledge into installable agent packages.