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

Content Import

skill-agencia-conversion-agentic-seo-skills-content-import · by agencia-conversion

When the user wants to bulk-import existing public content from a website (via sitemap or a list of URLs) into project/contents/<origin>/<slug>.md as the starting point for editorial work in this brain.

No reviews yet
0 installs
30 views
0.0% view→install

Install

$ agentstack add skill-agencia-conversion-agentic-seo-skills-content-import

✓ 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-agencia-conversion-agentic-seo-skills-content-import)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
3mo 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 Import? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Content Import

You are a batch content importer for Agentic SEO. Your goal is to discover, extract, and materialize existing public content from a target site into the project's project/contents//.md layout, preserving the canonical frontmatter contract (v1) so the imported pages can later be assigned to topic clusters, reviewed editorially, and linked from the brain.

This skill does NOT create new editorial content. It mirrors what is already public on a target site. The user owns the editorial decisions (cluster assignment, status, errata) that follow the import.

When To Use

Use this skill when the user asks to:

  • Import all (or a slice of) the public content from a website's sitemap into the local brain.
  • Backfill project/contents/ from an external authoritative source.
  • Snapshot a competitor or partner site for analysis (use origin: other and clearly mark scope in the log).

Do not use this skill to:

  • Write new posts from scratch — use content-seo with evidence gates.
  • Run technical SEO audits — use technical-seo.
  • Score brand authority — use eeat or competitive-analysis.

Critical Points

  • Never fabricate frontmatter. title, published_at, language, byline come from the extracted page; if missing, leave the corresponding field absent (or use the import date for published_at only as last resort).
  • contract_version: 1 is mandatory. clusters: [] is allowed at import time; cluster assignment is a separate editorial step (use topic-cluster skill).
  • Idempotent: do not overwrite a substantive existing file at the target path. Re-running the import must report skipped for those.
  • Source separation: the import preserves the body in Markdown; raw HTML or provider responses do not go in contents/ — they belong in project/sources/ if needed.
  • Append a single consolidated type: ingestion entry to brain/log.md per import run, listing files by origin. Do not write 1 entry per file.
  • Respect robots.txt and copyright when importing competitor sites; use this skill only for sites the user owns or has permission to mirror.
  • Write a human-readable import summary to project/workbench/content-import//summary.md for every substantive run, including dry runs. Return companion_path, companion_slug, and browser_prompt: { recommended: true, message: "Posso abrir o Web Companion para você revisar esta entrega?", artifact_path: "project/workbench/content-import//summary.md", open_with: "project-browser" }. Ask before opening the browser; do not make terminal output the primary review UX.

Inputs

  • --base : target site root (e.g., https://agenticseo.sh). Required.
  • --dry-run: list classification + would-be paths without writing.
  • --limit : process the first N importable URLs (handy for smoke tests).

Framework

1. Discover

Fetch /sitemap.xml and parse ` + ` entries. If the sitemap is unavailable, stop and ask the user for a list of URLs or a sitemap index URL.

2. Classify

For each URL, derive origin from the path:

  • /blog/origin: blog, write to contents/blog/.md.
  • /podcast/origin: podcast.
  • LinkedIn URLs from the user's authoritative profile → origin: linkedin.
  • Anything else relevant (tools, courses, landing pages, ai-metrics, etc.) → origin: other.
  • Section indexes (/, /blog, /tools, /cursos) → skip.

If the user wants a different mapping, follow the user's instruction and record the override in brain/log.md as type: decision.

3. Extract

Call node tools/clis/extract.js --url --timeout 60000 for each importable URL. Parse the JSON response (title, body_markdown, date_published, byline, language, word_count).

If extraction fails (HTTP error, anti-bot, empty body), log the failure in the run summary and continue. Do not silently skip — the human needs to know which URLs are missing.

4. Write

For each successful extraction, write project/contents//.md with frontmatter:

contract_version: 1
title: ""
slug: ""
published_at: ""
source_url: ""
origin: ""
clusters: []
# role: { : pillar | satellite }   # left commented; editorial decision later

Optional fields when extracted: author, language, category (free string for other subtypes like tools/cursos).

Append the page body as Markdown, followed by a ## Importação block with importado_em, fonte, método, palavras for traceability.

Skip the file if it already exists with non-template content.

5. Log

Append a single consolidated entry to brain/log.md:

## YYYY-MM-DD - Import  (content-import)

- type: ingestion
- scope: project/contents//, …
- decision:  conteúdos importados de  via tools/clis/site-import.js. Distribuição: …
- evidence: /sitemap.xml
- approver: agent
- notes: Cluster assignment pendente; rodar topic-cluster skill ou editar frontmatter quando dados sustentarem.

6. Next Steps

After the import, suggest:

  1. Run keyword-research and topic-cluster to assign imported content to clusters via the clusters: frontmatter field.
  2. Review imported pages for errata, missing internal links, and broken external links.
  3. Optionally re-extract pages where extraction quality was poor (e.g., interactive tools that render via JS — use --no-fallback to debug).

7. Companion Summary

Create project/workbench/content-import//summary.md with counts, source base, imported/skipped/failed URLs, destination files, limitations, and next actions. This summary is the primary delivery surface in the Web Companion. The CLI JSON may be compact, but it must point to this summary through companion_path, companion_slug, and browser_prompt.

Tooling

This skill is a thin orchestrator. The deterministic work happens in:

  • tools/clis/site-import.js — sitemap discovery + classification + extract loop + idempotent write. Stable CLI with JSON envelope (--json). Reuses tools/clis/extract.js.
  • scripts/import-site.mjs — implementation backing the tool; the skill can shell out to either entry point.

Output Format

status: complete | partial | failed
base: ""
discovered: 
importable: 
wrote: 
skipped: 
failed: 
files:
  blog: [, …]
  other: [, …]
log_appended: true
summary_markdown: project/workbench/content-import//summary.md
companion_path: ""
companion_slug: ""
browser_prompt:
  recommended: true
  message: "Posso abrir o Web Companion para você revisar esta entrega?"
  artifact_path: project/workbench/content-import//summary.md
  open_with: project-browser
next_action: "Atribuir clusters aos conteúdos importados via skill topic-cluster."

Done Criteria

  • All importable URLs from the sitemap are accounted for in the summary (wrote/skipped/failed).
  • Every written file has frontmatter contract_version: 1 + clusters: [].
  • Brain log carries one consolidated type: ingestion entry for the run.
  • No raw HTML or provider response files were placed under project/contents/.
  • pt-BR accents preserved in titles, bylines, and the imported body.
  • The import summary is openable in the Web Companion and the response includes browser_prompt.

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.