Agentic Import

VerifiedSafe

This skill imports external reusable assets like skills, templates, or agents into a repository's v0.2 plugin architecture. It performs pre-flight checks to ensure the repository structure is correct and then delegates the actual import to the agentic-share skill. Useful for bringing in third-party or external assets while maintaining plugin integrity.

Sby Skills Guide Bot
DevelopmentIntermediate
1506/2/2026
Claude Code
#asset-import#plugin-architecture#workflow-automation

Recommended for

Our review

Imports external skills, templates, or agents into a repository's Claude Code v0.2 plugin architecture.

Strengths

  • Supports three asset types (skill, template, agent)
  • Automatic pre-flight validation (checks path existence, repository structure)
  • Dry-run mode to preview import without writing
  • Works with plugin system and named imports

Limitations

  • Requires the current directory to be the repository root with .claude-plugin structure
  • Source paths must be absolute
  • Specific to Claude Code v0.2 plugin architecture
When to use it

When you need to bring an external skill, template, or agent into your Claude Code plugin-structured repository.

When not to use it

When importing from relative paths or when the target repository does not follow the required .claude-plugin structure.

Security analysis

Safe
Quality score85/100

The skill only validates environment and delegates to a named internal skill, with no direct execution of dangerous commands. Allowed tools include Bash but are not used in the skill's logic.

No concerns found

Examples

Import skill into plugin
/agentic-import skill /path/to/project/.claude/skills/my-skill --plugin ac-tools
Import template directory
/agentic-import template /path/to/project/templates/onboarding
Import workflow agent file
/agentic-import agent /path/to/project/agents/spec-reviewer.md

name: agentic-import description: "Import external reusable assets into this repository's v0.2 plugin architecture (skills, templates, agents)." project-agnostic: false allowed-tools:

  • Read
  • Write
  • Edit
  • Bash
  • Glob
  • Grep
  • Skill

Agentic Import

Import an external asset into this repository.

Arguments

  • asset_type: skill | template | agent
  • source_path: absolute path to source asset
  • target_name: optional destination name
  • options: optional flags (--plugin, --force, --dry-run)

Request: $ARGUMENTS

Execution

Delegate to shared logic via explicit skill invocation:

Skill(skill="agentic-share", args="import $ARGUMENTS")

Examples

# Import a skill into ac-tools
/agentic-import skill /path/to/project/.claude/skills/my-skill --plugin ac-tools

# Import template directory
/agentic-import template /path/to/project/templates/onboarding

# Import workflow agent file
/agentic-import agent /path/to/project/agents/spec-reviewer.md

# Preview without writing
/agentic-import skill /path/to/skill --plugin ac-git --dry-run

Pre-Flight Check

Before delegating, verify:

  1. Current directory is repository root (contains .claude-plugin/marketplace.json and plugins/).
  2. source_path exists.
  3. source_path is absolute.
  4. If asset_type=skill, a target plugin is provided or inferable.

If any check fails, stop with a clear error.

Related skills