| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Unified primitives for AI coding agents.
npm install unagentimport { detectCurrentAgent, discoverSkills, installSkill } from 'unagent'
// Detect which agent is running
const agent = detectCurrentAgent()
if (agent) {
console.log(`Running in ${agent.config.name}`)
}
// Discover skills
const skills = discoverSkills('~/.claude/skills', { recursive: true })
// Install skills (local or git sources)
await installSkill({ source: 'unjs/unagent' })
await installSkill({ source: './local/skills', mode: 'symlink' })MIT
| Back | FazBrowse Home | New Git URL |