skillZs
LIVE SKILL TAGS
>>> LIVE SKILLS INDEX <<<
* OPEN SOURCE *
NO LOGIN, NO TRACKING
REAL INSTALL DATA
← back to all skills
crestapps/crestapps.agentskills7 installs

crestapps-core-ai-agents

Skill for agent profiles, agent availability, and task delegation through the CrestApps.Core orchestrator.

How do I install this agent skill?

npx skills add https://github.com/crestapps/crestapps.agentskills --skill crestapps-core-ai-agents
view source ↗

Is this agent skill safe to install?

  • Gen Agent Trust Hubpass

    The skill provides documentation and code examples for the CrestApps.Core AI agent orchestration framework. No security issues were detected.

  • Socketpass

    No alerts

  • Snykpass

    Risk: LOW · No issues

What does this agent skill do?

CrestApps.Core AI Agents - Prompt Templates

Create AI Agents

You are a CrestApps.Core expert. Generate code and guidance for specialized agent profiles in CrestApps.Core.

Guidelines

  • Agents are standard AIProfile records with Type = AIProfileType.Agent.
  • Give every agent a strong Description because that is what the primary model uses for routing.
  • Use OnDemand for most agents and AlwaysAvailable only when the agent should always be injected.
  • Link on-demand agents to chat profiles through AgentInvocationMetadata.
  • Assume agent execution is intentionally isolated and tools are disabled inside the delegated agent run.

Agent Example

var agent = new AIProfile
{
    Type = AIProfileType.Agent,
    Name = "translator",
    DisplayText = "Translator",
    Description = "Translates text between languages.",
    ChatDeploymentName = "gpt-4o-mini",
};

agent.Put(new AgentMetadata
{
    Availability = AgentAvailability.OnDemand,
});

await profileManager.CreateAsync(agent);

Link the Agent to a Chat Profile

chatProfile.Put(new AgentInvocationMetadata
{
    Names = ["translator", "code-reviewer"],
});

await profileManager.UpdateAsync(chatProfile);

Availability Modes

ModeUse
OnDemandSpecialized agents assigned per profile
AlwaysAvailableGlobal agents needed in every orchestration request

Add the canonical catalog link to the repository README so users can inspect current installs and available audits. The publishing guide covers the complete discovery path.

<a href="https://skillzs.dev/skills/crestapps/crestapps.agentskills/crestapps-core-ai-agents">View crestapps-core-ai-agents on skillZs</a>