AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Content Audit

skill-kentico-xperience-by-kentico-kenticopilot-content-audit · by Kentico

Audits a Kentico Xperience 13 (KX13) project's content model based on the project's database and generates structured Markdown and JSON reports. Use when the user asks to audit, analyze, export, or inspect a KX13 database, content model, page types, content tree, forms, custom tables, or page builder usage.

No reviews yet
0 installs
0 views
view→install

Install

$ agentstack add skill-kentico-xperience-by-kentico-kenticopilot-content-audit

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-kentico-xperience-by-kentico-kenticopilot-content-audit)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
25d ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Content Audit? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

KX13 Content Auditor — Agent Skill

The CLI tool handles the full workflow — querying the database, exporting JSON data, and generating a Markdown report. Interpret the user's request, construct the right CLI command, run it, and present the results.

For full technical details (setup, flags, project structure), see [kx13-content-audit/README.md](../../README.md).


User Intent Parsing

Parse the user's natural-language input to determine which export areas and filters to use.

Export Scope

If the user asks for everything, or gives no specific scope, run a full export (no area flags). Otherwise, combine the relevant flags.

| User says (examples) | CLI flag | | ------------------------------------------- | --------------------------- | | nothing specific / "full" / "everything" | (no flags — full export) | | "sites" / "content tree" / "pages" | --sites | | "page types" / "document types" / "schemas" | --page-types | | "page builder" / "widgets" / "components" | --page-builder-components | | "custom modules" / "modules" | --custom-modules | | "custom tables" / "tables" | --custom-tables | | "forms" / "bizforms" / "online forms" | --forms | | "report" / "analysis" / "audit" | --report |

Filters

| User says (examples) | CLI flag | | ------------------------------------------------------- | ------------------------------ | | "for site DancingGoatMvc" / "only the DancingGoat site" | --site-name DancingGoatMvc | | "DancingGoat. page types" / "class DancingGoat." | --class-name "DancingGoat.*" | | "under /Articles" / "the articles section" | --page-path /Articles | | "output to ./my-folder" | --output ./my-folder |


Gotchas

  • -- separator is required when invoking via dotnet run. Everything after -- is passed to the CLI; without it, dotnet run consumes the flags itself and the auditor sees no arguments.
  • Filter semantics differ per flag. --site-name is exact match (no wildcards). --class-name accepts * wildcards and comma-separated patterns. --page-path is a prefix match against the node alias path.
  • Default output directory is audit-results/ under the auditor project root, not the current working directory. Pass --output if the user expects results elsewhere.
  • --report is implied by a full export. When running with no area flags (full export), the Markdown report is generated automatically — do not add --report on top. Only pass --report when the user explicitly asks for the report alongside selective area flags.
  • TLS errors against KX13 dev databases. Modern SQL clients require Encrypt=False; (or a trusted server cert) in the connection string for typical KX13 dev setups. If the CLI fails with a certificate/SSL error, this is usually the cause.
  • appsettings.development.json is intentionally lowercase. It is loaded as an explicit overlay in Program.cs and is git-ignored. Do not rename it to appsettings.Development.json.
  • Empty results are valid. A successful run with no rows for a given area means the database genuinely has no data of that type — not a failure.

Workflow

1. Workspace Check

Search the workspace for the KX13.ContentAuditor.slnx solution file (e.g. **/KX13.ContentAuditor.slnx). If the file is not found, stop and inform the user:

> The KX13 Content Auditor source code was not found in this workspace. The > skill plugin can be installed independently, but running the audit requires > the auditor solution. Please clone the repository and ensure the > kx13-content-audit/src/ folder is present in your workspace.

Do not proceed to pre-flight or CLI execution without the solution files.

2. Pre-flight Checks

  1. Read kx13-content-audit/src/KX13.ContentAuditor.CLI/appsettings.development.json

(or appsettings.json). Verify that ConnectionStrings.ConnectionString is non-empty. If missing, ask the user to configure it.

  1. Build: dotnet build kx13-content-audit/src/KX13.ContentAuditor.CLI -c Release -q

If the build fails, report errors and stop.

3. Run the CLI

dotnet run --project kx13-content-audit/src/KX13.ContentAuditor.CLI -- [area-flags] [filter-flags] [--output ]

The -- separator after the project path is required.

4. Present Results

After the CLI completes:

  1. List the files in the output directory.
  2. Tell the user the file paths and summarize what was exported.
  3. If the report was generated (content-model-report.md), highlight it.

Error Handling

  • "Connection string is missing or empty" → go back to pre-flight.
  • SQL connection errors → report to user (server unreachable or bad credentials).
  • Empty results → valid; the database may have no data of that type.

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.