Agent Skills — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Agent Skills (Plugin) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
A curated collection of Claude Agent Skills designed to enhance AI workflows with specialized capabilities.
[English](./README.md) | [中文](./README_CN.md)
Transforms user-provided prompts into high-quality, clear, and effective instructions optimized for AI models.
Key Features:
When to Use: When you need to refine vague, unclear, or poorly structured prompts into effective instructions.
Location: prompt-optimizer/
AI-powered JSON internationalization file translator with agentic reflection mechanism for high-quality multilingual content.
Source: This skill is based on the open-source Jta project Requirements: Requires the jta CLI tool to be installed (the skill can auto-install it)Key Features:
{variables}, {{placeholders}}, HTML tags, URLs, MarkdownWhen to Use: When you need to translate JSON i18n/locale files, add new languages, or update existing translations.
Location: jta/
Additional Setup:
jta CLI tool if neededThe easiest way to install in Claude Code:
# Step 1: Add the marketplace
/plugin marketplace add hikanner/agent-skills
# Step 2: Install the skills you need
/plugin install prompt-optimizer@kanner-agent-skills
/plugin install jta@kanner-agent-skills
# Step 3: Restart Claude Code to activate the skillsTo browse available plugins interactively:
/pluginFor team projects, configure the marketplace in your project's .claude/settings.json:
{
"extraKnownMarketplaces": {
"kanner-agent-skills": {
"source": {
"source": "github",
"repo": "hikanner/agent-skills"
}
}
},
"enabledPlugins": {
"prompt-optimizer@kanner-agent-skills": true,
"jta@kanner-agent-skills": true
}
}When team members trust the repository folder, Claude Code automatically:
For testing local changes before publishing:
# Step 1: Clone the repository
git clone https://github.com/hikanner/agent-skills.git
cd agent-skills
# Step 2: Add as local marketplace
/plugin marketplace add ./
# Step 3: Install plugins
/plugin install prompt-optimizer@kanner-agent-skills
/plugin install jta@kanner-agent-skills#### For Individual Users (Global Skills)
Copy skills to your Claude skills directory:
# Clone the repository
git clone https://github.com/hikanner/agent-skills.git
# Copy specific skills
cp -r agent-skills/prompt-optimizer ~/.claude/skills/
cp -r agent-skills/jta ~/.claude/skills/
# Or use symbolic links (recommended for development)
ln -s $(pwd)/agent-skills/prompt-optimizer ~/.claude/skills/prompt-optimizer
ln -s $(pwd)/agent-skills/jta ~/.claude/skills/jtaSkills will be available across all your projects.
#### For Project Teams (Project Skills)
Add skills to your project's .claude/skills/ directory:
# In your project root
mkdir -p .claude/skills
# Copy the skills you need
cp -r /path/to/agent-skills/prompt-optimizer .claude/skills/
cp -r /path/to/agent-skills/jta .claude/skills/
# Commit to version control
git add .claude/skills
git commit -m "feat: add agent skills for team"Team members automatically get the skills when they clone the repository - no additional installation needed!
For use in Claude.ai web interface:
cd agent-skills
zip -r prompt-optimizer.zip prompt-optimizer/
zip -r jta.zip jta/For API users, upload skills to your workspace:
from anthropic import Anthropic
client = Anthropic()
# Upload skill
with open("prompt-optimizer.zip", "rb") as f:
skill = client.beta.skills.create(
skill_file=f,
betas=["skills-2025-10-02"]
)
print(f"Skill ID: {skill.id}")Then use in your API calls:
response = client.beta.messages.create(
model="claude-sonnet-4-5-20250929",
max_tokens=4096,
betas=["code-execution-2025-08-25", "skills-2025-10-02"],
container={
"skills": [
{"type": "workspace", "skill_id": skill.id, "version": "latest"}
]
},
tools=[{"type": "code_execution_20250825", "name": "code_execution"}],
messages=[{"role": "user", "content": "Your request"}]
)Use the /plugin command to manage installed skills:
# Get help on available plugin commands
/plugin help
# Common operations (verify with /plugin help for your version)
/plugin list # List installed plugins
/plugin install <name> # Install a plugin
/plugin uninstall <name> # Uninstall a pluginNote: The exact commands and options may vary by Claude Code version. Always use /plugin help to see the most current commands for your installation.
In any Claude Code conversation:
"What skills are available?"or
"List all available skills"Simply ask Claude:
"Can you help optimize this prompt for better results?"
or
"I need to improve this instruction: [your prompt]"
For basic translation:
"Translate my locales/en.json to Chinese, Japanese, and Korean"
For incremental updates:
"I added 5 new keys to en.json, please update the translations"
For CI/CD setup:
"Set up automatic translation in GitHub Actions"
Agent Skills are modular capabilities that extend what AI agents can do. They consist of instructions, scripts, and resources that help agents perform specialized tasks autonomously.
Each skill in this repository follows the standard Agent Skills format:
skill-name/
├── SKILL.md # Core skill definition and instructions
├── LICENSE.txt # Apache 2.0 license
├── examples/ # (Optional) Step-by-step use cases
├── scripts/ # (Optional) Helper scripts
└── references/ # (Optional) Additional documentationContributions are welcome! If you have ideas for new skills or improvements to existing ones:
git checkout -b feature/new-skill)git commit -m 'feat: add new skill')git push origin feature/new-skill)SKILL.mdThis project is licensed under the Apache License 2.0 - see the LICENSE file for details.
Each skill includes a copy of the license in its directory (LICENSE.txt).
Kanner 📧 Email: [email protected]
Made for the Agent Skills ecosystem
Enabling AI agents to handle specialized tasks automatically.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.