Back to list
IbIFACE-Tech

agent-configuration

by IbIFACE-Tech

Paracle is a framework for building AI native app and project.

0🍴 0📅 Jan 19, 2026

SKILL.md


name: agent-configuration description: Configure agent specs, inheritance, skills, and tools in .parac/ workspace. Use when setting up or customizing agents. license: Apache-2.0 compatibility: YAML, Paracle Framework metadata: author: paracle-core-team version: "1.0.0" category: configuration level: intermediate display_name: "Agent Configuration" tags: - agents - configuration - yaml - inheritance capabilities: - agent_configuration - inheritance_setup - skill_assignment - tool_configuration requirements: - skill_name: paracle-development min_level: basic allowed-tools: Read Write

Agent Configuration Skill

When to use this skill

Use when:

  • Creating new agent specifications
  • Setting up agent inheritance
  • Configuring agent skills and tools
  • Customizing agent behavior
  • Troubleshooting agent configuration

Agent Spec Structure

# .parac/agents/specs/my-agent.yaml
name: my-agent
model: gpt-4
temperature: 0.7
max_tokens: 2000

system_prompt: |
  You are an expert software developer.
  You write clean, maintainable code.

skills:
  - code-generation
  - debugging
  - testing

tools:
  - file-read
  - file-write
  - shell-execute

metadata:
  author: team
  version: "1.0.0"

Inheritance Pattern

# Base agent
# .parac/agents/specs/base-coder.yaml
name: base-coder
model: gpt-4
temperature: 0.7
system_prompt: "You are a software developer."
skills:
  - code-generation

# Specialized agent (inherits from base)
# .parac/agents/specs/python-coder.yaml
name: python-coder
inherits: base-coder  # Inherits all properties from base-coder
temperature: 0.5  # Override: lower temperature for Python
skills:
  - code-generation  # Inherited
  - python-specific  # Added
system_prompt: |
  You are a Python expert.
  Follow PEP 8 standards.

Configuration Best Practices

  1. Use inheritance for common configurations
  2. Keep system prompts focused
  3. Test configurations before deployment
  4. Version control all agent specs
  5. Document custom configurations

Resources

  • Agent Specs: .parac/agents/specs/
  • Template: templates/.parac-template/agents/specs/

Score

Total Score

65/100

Based on repository quality metrics

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

+10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

1ヶ月以内に更新

+10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

+5

Reviews

💬

Reviews coming soon