skill-system-postgres
Postgres-backed observability and policy store for the skill system. Provides tables for policy profiles (effect allowlists), skill execution runs, and step-level events. Use when setting up the skill system database or querying execution history.
What this skill does
# Skill System (Postgres State)
Database schema for skill system observability, policy, graph, refresh/control-plane state, canonical rule hierarchy projections, and project architecture graph projections.
## Install
```bash
# Replace 'postgres' with your PostgreSQL superuser if needed (e.g. your OS username)
psql -U postgres -d agent_memory -v ON_ERROR_STOP=1 -f init.sql
```
```powershell
# Replace 'postgres' with your PostgreSQL superuser if needed
& "C:\Program Files\PostgreSQL\18\bin\psql.exe" -U postgres -d agent_memory -v "ON_ERROR_STOP=1" -f init.sql
```
For existing v1 installations, also run `migrate-v2.sql`.
For graph and control-plane extensions, also run:
```bash
psql -U postgres -d agent_memory -v ON_ERROR_STOP=1 -f migrate-v3-graph.sql
psql -U postgres -d agent_memory -v ON_ERROR_STOP=1 -f migrate-v4-control-plane.sql
psql -U postgres -d agent_memory -v ON_ERROR_STOP=1 -f migrate-v5-rule-model.sql
psql -U postgres -d agent_memory -v ON_ERROR_STOP=1 -f migrate-v6-project-graph.sql
```
## Tables
- `skill_system.policy_profiles` — effect allowlists (what skills are allowed to do)
- `skill_system.runs` — execution records (goal, agent, status, duration, metrics)
- `skill_system.run_events` — step-level event log (which skill, which op, result)
- `skill_system.skill_graph_nodes` / `skill_system.skill_graph_edges` — global skill dependency graph
- `skill_system.refresh_jobs` / `skill_system.refresh_job_events` — queued refresh jobs and job logs
- `skill_system.artifact_versions` — version registry for generated artifacts
- `skill_system.rule_sets` / `skill_system.rule_entries` — canonical rule hierarchy and projected rule entries
- `skill_system.project_nodes` / `skill_system.project_edges` — canonical repo architecture graph and projected relationships
## Usage
The Agent writes to these tables as instructed by the Router skill. This skill does not execute anything — it's a state store.
```skill-manifest
{
"schema_version": "2.0",
"id": "skill-system-postgres",
"version": "1.4.0",
"capabilities": ["skill-policy-check", "skill-run-log", "skill-graph", "skill-refresh-control", "skill-rule-model", "skill-project-graph", "skill-projection-engine"],
"effects": ["db.read", "db.write"],
"operations": {
"check-policy": {
"description": "Check if a skill's effects are allowed by the active policy profile.",
"input": {
"policy_name": { "type": "string", "required": true, "description": "Policy profile name (e.g. dev)" },
"effects": { "type": "json", "required": true, "description": "Array of effect strings to check" }
},
"output": {
"description": "Whether all effects are allowed",
"fields": { "allowed": "boolean", "blocked_effects": "array" }
},
"entrypoints": {
"agent": "Query skill_system.policy_profiles WHERE name = policy_name"
}
},
"log-run": {
"description": "Log a skill execution run for observability.",
"input": {
"skill_id": { "type": "string", "required": true },
"operation": { "type": "string", "required": true },
"status": { "type": "string", "required": true },
"duration_ms": { "type": "integer", "required": false }
},
"output": {
"description": "Run ID",
"fields": { "run_id": "integer" }
},
"entrypoints": {
"agent": "INSERT INTO skill_system.runs and skill_system.run_events"
}
},
"migrate-graph": {
"description": "Apply migrate-v3-graph.sql to create graph nodes/edges schema.",
"input": {
"action": { "type": "string", "required": false, "description": "apply or check" }
},
"output": {
"description": "Migration status and table list",
"fields": { "status": "string", "tables": "array" }
},
"entrypoints": {
"agent": "Apply migrate-v3-graph.sql via psql"
}
},
"migrate-control-plane": {
"description": "Apply migrate-v4-control-plane.sql to create refresh jobs, refresh job events, and artifact versions tables.",
"input": {
"action": { "type": "string", "required": false, "description": "apply or check" }
},
"output": {
"description": "Migration status and table list",
"fields": { "status": "string", "tables": "array" }
},
"entrypoints": {
"agent": "Apply migrate-v4-control-plane.sql via psql"
}
},
"migrate-rule-model": {
"description": "Apply migrate-v5-rule-model.sql to create canonical rule hierarchy tables.",
"input": {
"action": { "type": "string", "required": false, "description": "apply or check" }
},
"output": {
"description": "Migration status and table list",
"fields": { "status": "string", "tables": "array" }
},
"entrypoints": {
"agent": "Apply migrate-v5-rule-model.sql via psql"
}
},
"project-rules": {
"description": "Sync canonical rule hierarchy into PostgreSQL and deterministic markdown rule projections.",
"input": {
"write_files": { "type": "boolean", "required": false, "description": "Write note rule projections after syncing" }
},
"output": {
"description": "Rule model summary and written projection paths",
"fields": { "rule_model": "json", "written_files": "array" }
},
"entrypoints": {
"unix": ["python3", "scripts/rule_projection.py", "--write-files"],
"agent": "Run scripts/rule_projection.py to upsert canonical rule rows and write deterministic note projections"
}
},
"migrate-project-graph": {
"description": "Apply migrate-v6-project-graph.sql to create canonical project graph tables.",
"input": {
"action": { "type": "string", "required": false, "description": "apply or check" }
},
"output": {
"description": "Migration status and table list",
"fields": { "status": "string", "tables": "array" }
},
"entrypoints": {
"agent": "Apply migrate-v6-project-graph.sql via psql"
}
},
"project-architecture": {
"description": "Sync canonical repo architecture graph into PostgreSQL and write note/architecture_map.md.",
"input": {
"write_file": { "type": "boolean", "required": false, "description": "Write architecture_map after syncing" }
},
"output": {
"description": "Architecture graph summary and written projection path",
"fields": { "architecture_graph": "json", "written_file": "string" }
},
"entrypoints": {
"unix": ["python3", "scripts/architecture_graph.py", "--write-file"],
"agent": "Run scripts/architecture_graph.py to upsert project graph rows and write deterministic note/architecture_map.md"
}
},
"run-projection-engine": {
"description": "Refresh deterministic markdown projections with GENERATED_START / GENERATED_END managed blocks.",
"input": {},
"output": {
"description": "Projection targets refreshed by the engine",
"fields": { "written_files": "array" }
},
"entrypoints": {
"unix": ["python3", "scripts/projection_engine.py"],
"agent": "Run scripts/projection_engine.py after canonical PostgreSQL models are up to date"
}
}
},
"stdout_contract": {
"last_line_json": true,
"note": "Migration operations remain agent-executed SQL; scripts/rule_projection.py returns a JSON payload."
}
}
```
Related in Backend & APIs
jfrog
IncludedInteract with the JFrog Platform via the JFrog CLI and REST/GraphQL APIs. Use this skill when the user wants to manage Artifactory repositories, upload or download artifacts, manage builds, configure permissions, manage users and groups, work with access tokens, configure JFrog CLI servers, search artifacts, manage properties, set up replication, manage JFrog Projects, run security audits or scans, look up CVE details, query exposures scan results from JFrog Advanced Security, manage release bundles and lifecycle operations, aggregate or export platform data, or perform any JFrog Platform administration task. Also use when the user mentions jf, jfrog, artifactory, xray, distribution, evidence, apptrust, onemodel, graphql, workers, mission control, curation, advanced security, exposures, or any JFrog product name.
cupynumeric-migration-readiness
IncludedPre-migration readiness assessor for porting NumPy to cuPyNumeric. Use BEFORE substantial porting work begins when the user asks whether code will scale on GPU, whether they should migrate to cuPyNumeric, which NumPy patterns transfer cleanly, what must be refactored before porting, or mentions pre-port assessment, scaling analysis, or refactor planning. Inspect the user's source code, look up NumPy usage, cross-reference the cuPyNumeric API support manifest, and distinguish distributed-scaling-friendly patterns from blockers such as unsupported APIs, scalar synchronization, host round-trips, Python/object-heavy control flow, shape/data-dependent branching, and in-place mutation hazards. Produce a verdict of READY, LIGHT REFACTOR, SIGNIFICANT REFACTOR, or NOT RECOMMENDED, with concrete refactor pointers.
alibabacloud-data-agent-skill
IncludedInvoke Alibaba Cloud Apsara Data Agent for Analytics via CLI to perform natural language-driven data analysis on enterprise databases. Data Agent for Analytics is an intelligent data analysis agent developed by Alibaba Cloud Database team for enterprise users. It automatically completes requirement analysis, data understanding, analysis insights, and report generation based on natural language descriptions. This tool supports: discovering data resources (instances/databases/tables) managed in DMS, initiating query or deep analysis sessions, real-time progress tracking, and retrieving analysis conclusions and generated reports. Use this Skill when users need to query databases, analyze data trends, generate data reports, ask questions in natural language, or mention "Data Agent", "data analysis", "database query", "SQL analysis", "data insights".
token-optimizer
IncludedReduce OpenClaw token usage and API costs through smart model routing, heartbeat optimization, budget tracking, and native 2026.2.15 features (session pruning, bootstrap size limits, cache TTL alignment). Use when token costs are high, API rate limits are being hit, or hosting multiple agents at scale. The 4 executable scripts (context_optimizer, model_router, heartbeat_optimizer, token_tracker) are local-only — no network requests, no subprocess calls, no system modifications. Reference files (PROVIDERS.md, config-patches.json) document optional multi-provider strategies that require external API keys and network access if you choose to use them. See SECURITY.md for full breakdown.
resend-cli
IncludedUse this skill when the task is specifically about operating Resend from an AI agent, terminal session, or CI job via the official resend CLI: installing/authenticating the CLI, sending/listing/updating/cancelling emails, batch sends, domains and DNS, webhooks and local listeners, inbound receiving, contacts, topics, segments, broadcasts, templates, API keys, profiles, or debugging Resend CLI/API failures. Trigger on mentions of Resend CLI, `resend`, `resend doctor`, `resend emails send`, `resend domains`, `resend webhooks listen`, `resend emails receiving`, or agent-friendly terminal automation.
alibabacloud-odps-maxframe-coding
IncludedUse this skill for MaxFrame SDK development and documentation navigation on Alibaba Cloud MaxCompute (ODPS). Helps answer MaxFrame API, concept, official example, and supported pandas API questions; create data processing programs; read/write MaxCompute tables; debug jobs (remote or local); and build custom DPE runtime images. Trigger when users mention MaxFrame, MaxCompute with MaxFrame, ODPS table processing, DPE runtime, MaxFrame docs/examples, DataFrame/Tensor operations, or GPU runtime setup. Works for both English and Chinese queries about Alibaba Cloud data processing with MaxFrame.