ask-add-agent

<critical_constraints> ❌ NO adapters without BaseAdapter inheritance ❌ NO skipping filesystem.py registration ❌ NO skipping copy.py registration ✅ MUST create agents//adapter.py ✅ MUST update SUPPORTED_AGENTS and AGENT_SCOPES ✅ MUST test with ask copy <agent> --skill bug-finder

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "ask-add-agent" with this command: npx skills add navanithans/agent-skill-kit/navanithans-agent-skill-kit-ask-add-agent

<critical_constraints> ❌ NO adapters without BaseAdapter inheritance ❌ NO skipping filesystem.py registration ❌ NO skipping copy.py registration ✅ MUST create agents//adapter.py ✅ MUST update SUPPORTED_AGENTS and AGENT_SCOPES ✅ MUST test with ask copy <agent> --skill bug-finder

</critical_constraints>

<adapter_template>

from pathlib import Path from typing import Dict from agents.base import BaseAdapter from ask.utils.skill_registry import get_skill_readme

class ExampleAdapter(BaseAdapter): def init(self, use_global: bool = False): if use_global: self.target_dir = Path.home() / ".example" / "skills" else: self.target_dir = Path.cwd() / ".example" / "skills"

def get_target_path(self, skill: Dict, name: str = None) -> Path:
    skill_name = name or skill.get("name", "unknown")
    return self.target_dir / skill_name / "SKILL.md"

def transform(self, skill: Dict) -> str:
    return f"---\nname: {skill['name']}\n---\n\n{get_skill_readme(skill)}"

</adapter_template>

<filesystem_registration>

def _get_example_adapter(use_global: bool): from agents.example.adapter import ExampleAdapter return ExampleAdapter(use_global=use_global)

</filesystem_registration>

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Automation

ask-shadcn-architect

No summary provided by upstream source.

Repository SourceNeeds Review
Automation

ask-commit-assistance

No summary provided by upstream source.

Repository SourceNeeds Review
Automation

ask-skill-creator

No summary provided by upstream source.

Repository SourceNeeds Review
Automation

ask-nextjs-architect

No summary provided by upstream source.

Repository SourceNeeds Review