Import external reusable assets into this repository's v0.2 plugin architecture (skills, templates, agents).
Scanned 9/6/2026
Install to Claude Code
npx -y skills add MatiasComercio/agentic-config --skill agentic-import --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Agentic Import?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/matiascomercio-agentic-import-agentic-config)More formats (shields.io, HTML) on the badges page.
---
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:
```python
Skill(skill="agentic-share", args="import $ARGUMENTS")
```
## Examples
```bash
# 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.
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!