Back to the catalog

tungnt-ai-skills

An agentic skills framework & software development methodology that works: planning, TDD, debugging, and collaboration workflows.

Open source Open in the app JSON README (API)

About

An agentic skills framework & software development methodology that works: planning, TDD, debugging, and collaboration workflows.

Details

Kind
Plugins
Topic
Developer tools
Publisher
tungnt1405
Origin
gemini
Category
ferramentas
Version
1.10.0
Last push
2026-08-26T01:49:08Z
Repository state
ativo
Language
JavaScript
License
MIT
Added
2026-08-30 14:13:39
Updated
2026-08-30 14:13:39
Origin id
tungnt1405/tungnt-ai-skills-marketplace

README

# tungnt-ai-skills

A collection of skills for Claude Code, Codex, GitHub Copilot CLI, Gemini CLI, Antigravity, and OpenCode.
Each session automatically loads `using-tungnt-ai-skills`, then selects the appropriate
workflow for investigation, brainstorming, planning, implementation, and review.

## Quick installation

Requirement: Node.js with `npm exec` or `npx`.

```bash
npm exec --yes --package=github:tungnt1405/tungnt-ai-skills-marketplace -- tungnt-ai-skills install
```

The command above installs the plugin for all supported agents. To install it for one agent only:

```bash
npm exec --yes --package=github:tungnt1405/tungnt-ai-skills-marketplace -- tungnt-ai-skills install --agent codex
```

Valid agents: `claude`, `codex`, `copilot`, `gemini`, `opencode`, `agy`, `antigravity`,
`antigravity-ide`, `antigravity-all`.

Preview the changes without writing files:

```bash
npm exec --yes --package=github:tungnt1405/tungnt-ai-skills-marketplace -- tungnt-ai-skills install --dry-run
```

## Native install mode

Add `--native` to have the installer use the agent's native install flow:

```bash
npm exec --yes --package=github:tungnt1405/tungnt-ai-skills-marketplace -- tungnt-ai-skills install --agent claude --native
npm exec --yes --package=github:tungnt1405/tungnt-ai-skills-marketplace -- tungnt-ai-skills install --agent codex --native
npm exec --yes --package=github:tungnt1405/tungnt-ai-skills-marketplace -- tungnt-ai-skills install --agent copilot --native
npm exec --yes --package=github:tungnt1405/tungnt-ai-skills-marketplace -- tungnt-ai-skills install --agent opencode --native
```

`--native` applies to Claude Code, Codex, GitHub Copilot CLI, and OpenCode. Gemini and Antigravity use
file copies managed by the installer.

To install without `npx`, run the following commands directly:

```bash
# Claude Code
claude plugin marketplace add tungnt1405/tungnt-ai-skills-marketplace
claude plugin install tungnt-ai-skills@tungnt-ai-skills-marketplace
claude plugin enable tungnt-ai-skills@tungnt-ai-skills-marketplace

# Codex
codex plugin marketplace add tungnt1405/tungnt-ai-skills-marketplace
codex plugin add tungnt-ai-skills@tungnt-ai-skills-marketplace

# GitHub Copilot CLI
copilot plugin marketplace add tungnt1405/tungnt-ai-skills-marketplace
copilot plugin install tungnt-ai-skills@tungnt-ai-skills-marketplace
```

## Update

Update all installations managed by the installer:

```bash
npm exec --yes --package=github:tungnt1405/tungnt-ai-skills-marketplace -- tungnt-ai-skills update
```

Update one native plugin:

```bash
npm exec --yes --package=github:tungnt1405/tungnt-ai-skills-marketplace -- tungnt-ai-skills update --agent claude --native
npm exec --yes --package=github:tungnt1405/tungnt-ai-skills-marketplace -- tungnt-ai-skills update --agent codex --native
npm exec --yes --package=github:tungnt1405/tungnt-ai-skills-marketplace -- tungnt-ai-skills update --agent copilot --native
npm exec --yes --package=github:tungnt1405/tungnt-ai-skills-marketplace -- tungnt-ai-skills update --agent opencode --native
```

To update natively without `npx`, run the following commands directly:

```bash
# Claude Code
claude plugin marketplace update tungnt-ai-skills-marketplace
claude plugin update tungnt-ai-skills@tungnt-ai-skills-marketplace

# Codex: refresh the marketplace, then reinstall the plugin
codex plugin marketplace upgrade tungnt-ai-skills-marketplace
codex plugin remove tungnt-ai-skills@tungnt-ai-skills-marketplace
codex plugin add tungnt-ai-skills@tungnt-ai-skills-marketplace

# GitHub Copilot CLI
copilot plugin marketplace update tungnt-ai-skills-marketplace
copilot plugin update tungnt-ai-skills@tungnt-ai-skills-marketplace
```

## Manual installation without npm/npx

Clone the repository, then copy the entire package to the agent's plugin directory:

| Agent | Directory |
| --- | --- |
| Claude Code | `~/.claude/plugins/cache/tungnt-ai-skills-marketplace` |
| Codex | `~/.codex/plugins/tungnt-ai-skills-marketplace` |
| GitHub Copilot CLI | `~/.copilot/installed-plugins/tungnt-ai-skills-marketplace/tungnt-ai-skills` |
| Gemini CLI | `~/.gemini/extensions/tungnt-ai-skills` |
| Antigravity CLI | `~/.gemini/antigravity-cli/plugins/tungnt-ai-skills` |
| Antigravity IDE | `~/.gemini/config/plugins/tungnt-ai-skills` |
| OpenCode | `~/.config/opencode/tungnt-ai-skills` + `~/.config/opencode/plugins/tungnt-ai-skills.js` |

For OpenCode details, see [docs/README.opencode.md](docs/README.opencode.md).
`--native` registers the plugin through OpenCode's own global config
(`~/.config/opencode/opencode.json`) because `opencode plugin add` accepts npm registry packages only.

## Verification

Start a new session and request a coding task. The plugin is working correctly when the agent
automatically loads `using-tungnt-ai-skills` before selecting the next skill.

For configuration details, see [docs/setting-configuration.md](docs/setting-configuration.md).

## License

MIT. Forked from [obra/superpowers](https://github.com/obra/superpowers).

More