opencode-skills-collection 4.0.19 → 4.0.21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bundled-skills/.antigravity-install-manifest.json +5 -1
- package/bundled-skills/agents-generator/SKILL.md +163 -0
- package/bundled-skills/agents-generator/assets/agents-full.md +452 -0
- package/bundled-skills/agents-generator/assets/agents-minimal.md +60 -0
- package/bundled-skills/agents-generator/assets/agents-nested.md +73 -0
- package/bundled-skills/agents-generator/assets/architecture.md +43 -0
- package/bundled-skills/agents-generator/assets/backend.md +35 -0
- package/bundled-skills/agents-generator/assets/claude.md +39 -0
- package/bundled-skills/agents-generator/assets/database.md +40 -0
- package/bundled-skills/agents-generator/assets/forms.md +56 -0
- package/bundled-skills/agents-generator/assets/frontend-patterns.md +44 -0
- package/bundled-skills/agents-generator/assets/git-workflow.md +61 -0
- package/bundled-skills/agents-generator/assets/i18n.md +50 -0
- package/bundled-skills/agents-generator/assets/platform.md +54 -0
- package/bundled-skills/agents-generator/assets/sdd-workflow.md +46 -0
- package/bundled-skills/agents-generator/assets/server-actions.md +36 -0
- package/bundled-skills/agents-generator/assets/styling.md +48 -0
- package/bundled-skills/agents-generator/assets/testing.md +67 -0
- package/bundled-skills/agents-generator/references/decision-matrix.md +311 -0
- package/bundled-skills/agents-generator/references/example-output/README.md +78 -0
- package/bundled-skills/agents-generator/references/template-filling-guide.md +67 -0
- package/bundled-skills/docs/integrations/jetski-cortex.md +3 -3
- package/bundled-skills/docs/integrations/jetski-gemini-loader/README.md +1 -1
- package/bundled-skills/docs/maintainers/repo-growth-seo.md +1 -1
- package/bundled-skills/docs/maintainers/skills-update-guide.md +1 -1
- package/bundled-skills/docs/users/aas-core.md +1 -1
- package/bundled-skills/docs/users/bundles.md +1 -1
- package/bundled-skills/docs/users/claude-code-skills.md +1 -1
- package/bundled-skills/docs/users/gemini-cli-skills.md +1 -1
- package/bundled-skills/docs/users/kiro-integration.md +1 -1
- package/bundled-skills/docs/users/usage.md +3 -3
- package/bundled-skills/docs/users/visual-guide.md +4 -4
- package/bundled-skills/gh-attach/SKILL.md +151 -0
- package/bundled-skills/talivia-agent-kit/SKILL.md +139 -0
- package/bundled-skills/unified-ai-gateway/SKILL.md +214 -0
- package/package.json +1 -1
- package/skills_index.json +100 -0
|
@@ -17,7 +17,7 @@ Configure AAS Core for Claude Code, describe the task and constraints, let Claud
|
|
|
17
17
|
- It lets Claude search the verified local catalog without loading the full library into context.
|
|
18
18
|
- It preserves Claude's exact selection without using metadata as an eligibility gate.
|
|
19
19
|
- It keeps MCP discovery read-only and CLI changes approval-gated.
|
|
20
|
-
- It includes
|
|
20
|
+
- It includes 2,001+ skills instead of a narrow single-domain starter pack.
|
|
21
21
|
- It supports the standard `.claude/skills/` path and the Claude Code plugin marketplace flow.
|
|
22
22
|
- It also ships generated bundle plugins so teams can install focused packs like `Essentials` or `Security Developer` from the marketplace metadata.
|
|
23
23
|
- It includes onboarding docs, bundles, and workflows so new users do not need to guess where to begin.
|
|
@@ -12,7 +12,7 @@ Install into the Gemini skills path, then ask Gemini to apply one skill at a tim
|
|
|
12
12
|
|
|
13
13
|
- It installs directly into the expected Gemini skills path.
|
|
14
14
|
- It includes both core software engineering skills and deeper agent/LLM-oriented skills.
|
|
15
|
-
- It helps new users get started with bundles and workflows rather than forcing a cold start from
|
|
15
|
+
- It helps new users get started with bundles and workflows rather than forcing a cold start from 2,001+ files.
|
|
16
16
|
- It is useful whether you want a broad internal skill library or a single repo to test many workflows quickly.
|
|
17
17
|
|
|
18
18
|
## Install Gemini CLI Skills
|
|
@@ -18,7 +18,7 @@ Kiro is AWS's agentic AI IDE that combines:
|
|
|
18
18
|
|
|
19
19
|
Kiro's agentic capabilities are enhanced by skills that provide:
|
|
20
20
|
|
|
21
|
-
- **Domain expertise** across
|
|
21
|
+
- **Domain expertise** across 2,001+ specialized areas
|
|
22
22
|
- **Best practices** from Anthropic, OpenAI, Google, Microsoft, and AWS
|
|
23
23
|
- **Workflow automation** for common development tasks
|
|
24
24
|
- **AWS-specific patterns** for serverless, infrastructure, and cloud architecture
|
|
@@ -39,7 +39,7 @@ If you came in through a **Claude Code** or **Codex** plugin instead of AAS Core
|
|
|
39
39
|
|
|
40
40
|
When you ran `npx agentic-awesome-skills` or cloned the repository, you:
|
|
41
41
|
|
|
42
|
-
✅ **Downloaded
|
|
42
|
+
✅ **Downloaded 2,001+ skill files** to your computer (default: `~/.agents/skills/`; or a custom path like `~/.agent/skills/` if you used `--path`)
|
|
43
43
|
✅ **Made them available** to your AI assistant
|
|
44
44
|
❌ **Did NOT enable them all automatically** (they're just sitting there, waiting)
|
|
45
45
|
|
|
@@ -231,7 +231,7 @@ Let's actually use a skill right now. Follow these steps:
|
|
|
231
231
|
|
|
232
232
|
## Direct-install Step 5: Pick Skills Manually
|
|
233
233
|
|
|
234
|
-
Don't try to use all
|
|
234
|
+
Don't try to use all 2,001+ skills at once. Here's a sensible approach:
|
|
235
235
|
|
|
236
236
|
If you want a tool-specific starting point before choosing skills, use:
|
|
237
237
|
|
|
@@ -362,7 +362,7 @@ Usually no, but if your AI doesn't recognize a skill:
|
|
|
362
362
|
|
|
363
363
|
### "Can I load all skills into the model at once?"
|
|
364
364
|
|
|
365
|
-
No. Even though you have
|
|
365
|
+
No. Even though you have 2,001+ skills installed locally, you should **not** concatenate every `SKILL.md` into a single system prompt or context block.
|
|
366
366
|
|
|
367
367
|
The intended pattern is:
|
|
368
368
|
|
|
@@ -40,7 +40,7 @@ agentic-awesome-skills/
|
|
|
40
40
|
├── 📄 CONTRIBUTING.md ← Contributor workflow
|
|
41
41
|
├── 📄 CATALOG.md ← Full generated catalog
|
|
42
42
|
│
|
|
43
|
-
├── 📁 skills/ ←
|
|
43
|
+
├── 📁 skills/ ← 2,001+ skills live here
|
|
44
44
|
│ │
|
|
45
45
|
│ ├── 📁 brainstorming/
|
|
46
46
|
│ │ └── 📄 SKILL.md ← Skill definition
|
|
@@ -53,7 +53,7 @@ agentic-awesome-skills/
|
|
|
53
53
|
│ │ └── 📁 2d-games/
|
|
54
54
|
│ │ └── 📄 SKILL.md ← Nested skills also supported
|
|
55
55
|
│ │
|
|
56
|
-
│ └── ... (
|
|
56
|
+
│ └── ... (2,001+ total)
|
|
57
57
|
│
|
|
58
58
|
├── 📁 apps/
|
|
59
59
|
│ └── 📁 web-app/ ← Interactive browser
|
|
@@ -106,7 +106,7 @@ agentic-awesome-skills/
|
|
|
106
106
|
|
|
107
107
|
```
|
|
108
108
|
┌─────────────────────────┐
|
|
109
|
-
│
|
|
109
|
+
│ 2,001+ SKILLS │
|
|
110
110
|
└────────────┬────────────┘
|
|
111
111
|
│
|
|
112
112
|
┌────────────────────────┼────────────────────────┐
|
|
@@ -207,7 +207,7 @@ If you want a workspace-style manual install instead, cloning into `.agent/skill
|
|
|
207
207
|
│ ├── 📁 brainstorming/ │
|
|
208
208
|
│ ├── 📁 stripe-integration/ │
|
|
209
209
|
│ ├── 📁 react-best-practices/ │
|
|
210
|
-
│ └── ... (
|
|
210
|
+
│ └── ... (2,001+ total) │
|
|
211
211
|
└─────────────────────────────────────────┘
|
|
212
212
|
```
|
|
213
213
|
|
|
@@ -0,0 +1,151 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: gh-attach
|
|
3
|
+
description: "Upload and download GitHub user-attachments (screenshots, PDFs, zips, videos) from the terminal; use when asked to attach or embed a file in a PR, issue, or comment, or download an attachment URL."
|
|
4
|
+
category: developer-tools
|
|
5
|
+
risk: critical
|
|
6
|
+
source: community
|
|
7
|
+
source_type: community
|
|
8
|
+
source_repo: sudosubin/gh-attach
|
|
9
|
+
date_added: "2026-08-01"
|
|
10
|
+
author: sudosubin
|
|
11
|
+
license: MIT
|
|
12
|
+
license_source: "https://github.com/sudosubin/gh-attach/blob/main/LICENSE"
|
|
13
|
+
tags:
|
|
14
|
+
- github
|
|
15
|
+
- attachments
|
|
16
|
+
- screenshots
|
|
17
|
+
- gh-extension
|
|
18
|
+
- cli
|
|
19
|
+
tools:
|
|
20
|
+
- claude-code
|
|
21
|
+
- codex-cli
|
|
22
|
+
- cursor
|
|
23
|
+
- copilot
|
|
24
|
+
plugin:
|
|
25
|
+
targets:
|
|
26
|
+
codex: blocked
|
|
27
|
+
claude: blocked
|
|
28
|
+
setup:
|
|
29
|
+
type: manual
|
|
30
|
+
summary: "Installs and runs a third-party gh extension that needs a GitHub user_session cookie or GH_ATTACH_SESSION_TOKEN."
|
|
31
|
+
docs: SKILL.md
|
|
32
|
+
---
|
|
33
|
+
|
|
34
|
+
# Upload and download GitHub user-attachments (gh-attach)
|
|
35
|
+
|
|
36
|
+
GitHub has **no public API** for user-attachments. The web UI uses an internal
|
|
37
|
+
endpoint that mints `github.com/user-attachments` URLs whose visibility follows the
|
|
38
|
+
repository they belong to. [`gh-attach`](https://github.com/sudosubin/gh-attach)
|
|
39
|
+
(MIT, sudosubin) replicates that drag-and-drop flow as a `gh` CLI extension, so an
|
|
40
|
+
agent can upload a local file from the terminal, get a URL back, and later download
|
|
41
|
+
an attachment URL to a file.
|
|
42
|
+
|
|
43
|
+
## Overview
|
|
44
|
+
|
|
45
|
+
This skill drives `gh-attach` to turn a local file (screenshot, image, PDF, zip,
|
|
46
|
+
log, or video) into a hosted GitHub `user-attachments` URL, then embeds that URL
|
|
47
|
+
into a pull request, issue, or comment. It also downloads an existing attachment
|
|
48
|
+
URL back to a local file. GitHub auto-renders the URL as an image, video, or file
|
|
49
|
+
wherever it is pasted, and the URL inherits the repository's visibility, so a
|
|
50
|
+
private-repo upload stays private. It works against GitHub Cloud and GitHub
|
|
51
|
+
Enterprise Server.
|
|
52
|
+
|
|
53
|
+
## When to Use This Skill
|
|
54
|
+
|
|
55
|
+
Use this skill when asked to:
|
|
56
|
+
|
|
57
|
+
- "Attach a screenshot to the PR" or "add an image to the PR description"
|
|
58
|
+
- "Attach this file (PDF, zip, log, video) to the issue or comment"
|
|
59
|
+
- "Embed before/after screenshots" in a PR, issue, or README
|
|
60
|
+
- "Download this GitHub attachment" from a `user-attachments` URL
|
|
61
|
+
|
|
62
|
+
## How It Works
|
|
63
|
+
|
|
64
|
+
### Step 1: Verify prerequisites
|
|
65
|
+
|
|
66
|
+
```bash
|
|
67
|
+
gh auth status # gh installed and authenticated
|
|
68
|
+
gh extension list | grep -q 'gh attach' \
|
|
69
|
+
|| gh extension install sudosubin/gh-attach # review/pin the extension source first
|
|
70
|
+
```
|
|
71
|
+
|
|
72
|
+
Uploads use a GitHub `user_session` browser cookie, **not** the `gh` token (that
|
|
73
|
+
endpoint rejects tokens). By default `gh` must be authenticated so `gh-attach` can
|
|
74
|
+
select the matching browser account (Chromium family, Firefox family, or Safari).
|
|
75
|
+
If the wrong account is selected, add `--browser <name> --profile <name>`. For
|
|
76
|
+
headless or CI use, set `GH_ATTACH_SESSION_TOKEN` to the bare `user_session` cookie
|
|
77
|
+
value and treat it as a full account credential.
|
|
78
|
+
|
|
79
|
+
### Step 2: Upload
|
|
80
|
+
|
|
81
|
+
```bash
|
|
82
|
+
# Use an absolute quoted path; -R is optional inside a repo working dir.
|
|
83
|
+
URL=$(gh attach "/abs/path/screenshot.png" -R <owner>/<repo>)
|
|
84
|
+
```
|
|
85
|
+
|
|
86
|
+
`gh attach` prints the URL on one line to **stdout**. For GitHub Enterprise Server,
|
|
87
|
+
use `-R host/owner/repo`. Capture the output; it is the embeddable reference.
|
|
88
|
+
|
|
89
|
+
### Step 3: Embed into the PR / issue / comment
|
|
90
|
+
|
|
91
|
+
```bash
|
|
92
|
+
printf '## Screenshots\n\n%s\n' "$URL" \
|
|
93
|
+
| gh pr comment <pr> -R <owner>/<repo> --body-file -
|
|
94
|
+
```
|
|
95
|
+
|
|
96
|
+
Use `gh pr edit`, `gh issue comment`, or `gh issue edit` with `--body-file -` for
|
|
97
|
+
other targets. Always pass `--body-file -` (not inline `--body`) so multi-line
|
|
98
|
+
bodies and special characters cannot break shell quoting. GitHub auto-renders the
|
|
99
|
+
URL, so paste it as-is.
|
|
100
|
+
|
|
101
|
+
### Step 4: Download
|
|
102
|
+
|
|
103
|
+
```bash
|
|
104
|
+
# Specify the destination explicitly.
|
|
105
|
+
gh attach download "$URL" -O "/abs/path/out.png"
|
|
106
|
+
```
|
|
107
|
+
|
|
108
|
+
Downloads of private attachments use the active `gh` token, with browser cookies as
|
|
109
|
+
an authorization fallback.
|
|
110
|
+
|
|
111
|
+
## Examples
|
|
112
|
+
|
|
113
|
+
- **Attach a screenshot to PR #42:** upload the file, then append the URL under a
|
|
114
|
+
`## Screenshots` heading in the PR body with `gh pr edit ... --body-file -`.
|
|
115
|
+
- **Embed before/after screenshots in a README:** upload both files, paste the two
|
|
116
|
+
URLs into the README at the relevant section.
|
|
117
|
+
- **Download an attachment for review:** run `gh attach download "$URL" -O out.zip`
|
|
118
|
+
to fetch a `user-attachments` file locally.
|
|
119
|
+
|
|
120
|
+
## Best Practices
|
|
121
|
+
|
|
122
|
+
- Resolve globs to absolute paths first, and quote paths that contain spaces or
|
|
123
|
+
Unicode.
|
|
124
|
+
- For display sizing, embed an HTML tag instead of the bare URL:
|
|
125
|
+
`<img width="800" src="$URL">`.
|
|
126
|
+
- In CI, set `GH_ATTACH_SESSION_TOKEN` from a dedicated bot account.
|
|
127
|
+
- `gh-attach` can upload multiple files concurrently and emit Markdown or JSON
|
|
128
|
+
output with jq-style filtering when you need to script around the result.
|
|
129
|
+
|
|
130
|
+
## Limitations
|
|
131
|
+
|
|
132
|
+
- **Session cookie required.** A `user_session` cookie grants full account access
|
|
133
|
+
(it is not scoped like a PAT), so treat it like a password and prefer a bot
|
|
134
|
+
account in CI.
|
|
135
|
+
- **Write access to the target repo is required** to upload.
|
|
136
|
+
- **Private-repo attachments stay private:** the `user-attachments` URL inherits
|
|
137
|
+
repo visibility, so an anonymous fetch on a private repo returns 404 or 403 by
|
|
138
|
+
design.
|
|
139
|
+
- GitHub Cloud and GitHub Enterprise Server each decide which file extensions and
|
|
140
|
+
content types they accept.
|
|
141
|
+
- The skill embeds the URL itself; `gh attach` only prints it.
|
|
142
|
+
|
|
143
|
+
## Security & Safety Notes
|
|
144
|
+
|
|
145
|
+
- The `user_session` cookie and `GH_ATTACH_SESSION_TOKEN` are full-account
|
|
146
|
+
credentials. Never print them, never paste them on a command line, and never
|
|
147
|
+
commit them. Prefer a dedicated bot account for headless or CI use.
|
|
148
|
+
- Uploaded attachments are auto-rendered by GitHub, so only upload files you intend
|
|
149
|
+
to share with everyone who can view the target repository.
|
|
150
|
+
- Confirm the destination `-R <owner>/<repo>` before uploading so an attachment is
|
|
151
|
+
not created against the wrong repository.
|
|
@@ -0,0 +1,139 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: talivia-agent-kit
|
|
3
|
+
description: "Set up and verify Talivia revenue analytics through MCP, with explicit confirmation for website changes and payment attribution."
|
|
4
|
+
category: marketing
|
|
5
|
+
risk: critical
|
|
6
|
+
source: "https://github.com/talivia-group/agent/tree/f4ed3fc6b554ad5183a57ae13ca2a9bd5162c12a"
|
|
7
|
+
source_repo: talivia-group/agent
|
|
8
|
+
source_type: community
|
|
9
|
+
date_added: "2026-08-02"
|
|
10
|
+
author: taliviagroup
|
|
11
|
+
tags: [analytics, revenue, attribution, mcp, talivia, marketing]
|
|
12
|
+
tools: [codex, claude]
|
|
13
|
+
license: "MIT"
|
|
14
|
+
license_source: "https://github.com/talivia-group/agent/blob/f4ed3fc6b554ad5183a57ae13ca2a9bd5162c12a/LICENSE"
|
|
15
|
+
---
|
|
16
|
+
|
|
17
|
+
# Talivia Agent Kit
|
|
18
|
+
|
|
19
|
+
## Overview
|
|
20
|
+
|
|
21
|
+
Talivia connects website traffic and visitor journeys to payment revenue through
|
|
22
|
+
its MCP server. Use this skill to inspect an existing Talivia setup, install or
|
|
23
|
+
verify website tracking, and review traffic-to-revenue attribution while keeping
|
|
24
|
+
account, website, file, and payment changes behind explicit user consent.
|
|
25
|
+
|
|
26
|
+
## When to Use
|
|
27
|
+
|
|
28
|
+
- Use when the user explicitly asks to set up or verify Talivia revenue analytics.
|
|
29
|
+
- Use when the user mentions the Talivia MCP server, `talivia-group/agent`, or
|
|
30
|
+
`@talivia/agent`.
|
|
31
|
+
- Use when the user wants to understand which referrers, campaigns, pages, or
|
|
32
|
+
visitor journeys are associated with revenue.
|
|
33
|
+
- Do not use this skill for generic analytics work or unrelated payment-provider
|
|
34
|
+
setup.
|
|
35
|
+
|
|
36
|
+
## Safety Gate
|
|
37
|
+
|
|
38
|
+
1. Confirm the user owns or is authorized to manage the Talivia account and the
|
|
39
|
+
target website.
|
|
40
|
+
2. Use only the configured official MCP endpoint, `https://talivia.com/mcp`.
|
|
41
|
+
Stop if a tool, setup response, redirect, or local configuration supplies a
|
|
42
|
+
different host or an insecure URL; never send a Talivia credential to an
|
|
43
|
+
unverified endpoint.
|
|
44
|
+
3. Keep credentials out of chat, prompts, tool arguments, source files, and logs.
|
|
45
|
+
Never request or expose payment API keys, OAuth secrets, or bearer tokens.
|
|
46
|
+
4. Read the current account and website state before changing anything. Reuse an
|
|
47
|
+
existing website when possible; call `talivia_websites_create` only after the
|
|
48
|
+
user explicitly asks to create one.
|
|
49
|
+
5. Before any state-changing MCP call, state the exact account, website, action,
|
|
50
|
+
data involved, and expected effect, then obtain explicit user confirmation.
|
|
51
|
+
|
|
52
|
+
## Workflow
|
|
53
|
+
|
|
54
|
+
### Inspect the current setup
|
|
55
|
+
|
|
56
|
+
Call the read-only tools first:
|
|
57
|
+
|
|
58
|
+
1. `talivia_account_status`
|
|
59
|
+
2. `talivia_websites_list`
|
|
60
|
+
3. `talivia_setup_status_get` when a website or installation status is known
|
|
61
|
+
|
|
62
|
+
Do not infer account ownership, website identity, or consent from a domain name
|
|
63
|
+
alone. Ask when more than one website matches or the target is ambiguous.
|
|
64
|
+
|
|
65
|
+
### Plan and install tracking
|
|
66
|
+
|
|
67
|
+
1. Call `talivia_tracking_snippet_get` and
|
|
68
|
+
`talivia_framework_install_plan_get` for the selected website.
|
|
69
|
+
2. Show the files, framework, and tracking changes that would be made. Use the
|
|
70
|
+
native workspace tools to edit the user's project; Talivia MCP does not have
|
|
71
|
+
permission to edit local files by itself.
|
|
72
|
+
3. Make local edits only when the user has requested the installation or has
|
|
73
|
+
confirmed the exact proposed changes. Preserve existing analytics, consent,
|
|
74
|
+
and security controls.
|
|
75
|
+
4. Run the project's normal build and test commands before deployment.
|
|
76
|
+
|
|
77
|
+
### Verify after deployment
|
|
78
|
+
|
|
79
|
+
After the user confirms that the site is deployed, call:
|
|
80
|
+
|
|
81
|
+
- `talivia_tracker_verify`
|
|
82
|
+
- `talivia_setup_status_get`
|
|
83
|
+
|
|
84
|
+
Report what was actually verified, including any delay, missing event, or
|
|
85
|
+
unverified deployment. Do not claim revenue attribution from a tracking check
|
|
86
|
+
alone.
|
|
87
|
+
|
|
88
|
+
## Examples
|
|
89
|
+
|
|
90
|
+
### Read-only revenue review
|
|
91
|
+
|
|
92
|
+
> Inspect the Talivia account and tell me which pages and referrers are
|
|
93
|
+
> associated with revenue. Do not create websites, edit files, or connect a
|
|
94
|
+
> payment provider.
|
|
95
|
+
|
|
96
|
+
Start with the read-only account, website, and setup-status tools. Report the
|
|
97
|
+
returned evidence and uncertainty without inferring causation.
|
|
98
|
+
|
|
99
|
+
### Tracking installation
|
|
100
|
+
|
|
101
|
+
> Prepare Talivia tracking for the selected site and show me the exact files
|
|
102
|
+
> and changes before applying anything.
|
|
103
|
+
|
|
104
|
+
Resolve the website, retrieve the tracking snippet and framework plan, present
|
|
105
|
+
the proposed local diff, and wait for confirmation before writing or deploying.
|
|
106
|
+
|
|
107
|
+
### Connect payment attribution
|
|
108
|
+
|
|
109
|
+
1. Explain that payment attribution starts a browser-based authorization flow
|
|
110
|
+
and identify the Talivia account and website involved.
|
|
111
|
+
2. Obtain explicit confirmation before calling
|
|
112
|
+
`talivia_payment_connect_start`.
|
|
113
|
+
3. Send the user only to the secure URL returned by the official Talivia flow.
|
|
114
|
+
Do not ask the user to paste payment credentials or API keys into chat.
|
|
115
|
+
4. Finish with `talivia_payment_status_get` and
|
|
116
|
+
`talivia_checkout_attribution_guide_get`, and clearly separate connected
|
|
117
|
+
status from verified revenue data.
|
|
118
|
+
|
|
119
|
+
## Limitations
|
|
120
|
+
|
|
121
|
+
- This skill does not establish legal authority, cookie consent, privacy
|
|
122
|
+
compliance, or payment-provider permissions for the user.
|
|
123
|
+
- Talivia metrics and attribution depend on the upstream service, deployment,
|
|
124
|
+
consent configuration, event delivery, and connected payment provider; they
|
|
125
|
+
may be delayed or incomplete and do not prove causation.
|
|
126
|
+
- This skill does not install packages, change MCP configuration, create a
|
|
127
|
+
website, deploy code, or connect payments without an explicit user request
|
|
128
|
+
and confirmation at the relevant step.
|
|
129
|
+
- The upstream CLI and MCP server are external software. Review its current
|
|
130
|
+
release and endpoint configuration before installing or upgrading it; this
|
|
131
|
+
skill is pinned for attribution to the reviewed upstream commit, not a claim
|
|
132
|
+
that future upstream changes are safe.
|
|
133
|
+
- Stop and ask for clarification when the account, website, endpoint, consent
|
|
134
|
+
state, requested file changes, or payment scope is ambiguous.
|
|
135
|
+
|
|
136
|
+
## Source
|
|
137
|
+
|
|
138
|
+
- Upstream repository: [talivia-group/agent](https://github.com/talivia-group/agent/tree/f4ed3fc6b554ad5183a57ae13ca2a9bd5162c12a)
|
|
139
|
+
- Reviewed package version: `@talivia/agent@0.1.0`
|
|
@@ -0,0 +1,214 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: unified-ai-gateway
|
|
3
|
+
description: Operate and evaluate Unified AI System through eight governed MCP tools while preserving fake-provider, authorization, and evidence boundaries.
|
|
4
|
+
category: ai-ml
|
|
5
|
+
risk: critical
|
|
6
|
+
source: https://github.com/happy520ai/unified-ai-system/tree/master/skills/unified-ai-gateway
|
|
7
|
+
source_repo: happy520ai/unified-ai-system
|
|
8
|
+
source_type: official
|
|
9
|
+
date_added: "2026-08-01"
|
|
10
|
+
author: happy520ai
|
|
11
|
+
tags: [ai-gateway, codex, mcp, self-hosted, governance]
|
|
12
|
+
tools: [codex]
|
|
13
|
+
license: Apache-2.0
|
|
14
|
+
license_source: https://github.com/happy520ai/unified-ai-system/blob/master/LICENSE
|
|
15
|
+
---
|
|
16
|
+
|
|
17
|
+
# Unified AI Gateway
|
|
18
|
+
|
|
19
|
+
## Overview
|
|
20
|
+
|
|
21
|
+
Use the official `unified-ai-system` MCP server to inspect and exercise a local
|
|
22
|
+
AI gateway without provider credentials. This skill file provides operating
|
|
23
|
+
guidance; it does not install the server or change Codex configuration by
|
|
24
|
+
itself. The official Codex plugin bundles the MCP definition, while skill-only
|
|
25
|
+
installations require the manual setup below.
|
|
26
|
+
|
|
27
|
+
## Prerequisites And Setup
|
|
28
|
+
|
|
29
|
+
1. Confirm that Codex CLI and Docker are installed and Docker is running.
|
|
30
|
+
2. If the eight tools are already visible, skip setup and do not register a
|
|
31
|
+
duplicate server.
|
|
32
|
+
3. Explain the first stage: it downloads the reviewed immutable linux/amd64
|
|
33
|
+
image into Docker's cache, inspects its metadata and layer history, creates
|
|
34
|
+
but never starts a temporary container, exports its root filesystem, removes
|
|
35
|
+
that temporary container, and writes an inspection inventory to a temporary
|
|
36
|
+
directory. Obtain explicit user approval for those download and inspection
|
|
37
|
+
changes only.
|
|
38
|
+
4. After that first approval, pull the reviewed platform manifest and complete
|
|
39
|
+
the inspection. Do not execute the image or register it yet:
|
|
40
|
+
|
|
41
|
+
```bash
|
|
42
|
+
IMAGE='ghcr.io/happy520ai/unified-ai-system/mcp-server@sha256:cc17e923335f953631f59fb6a5ffcdce0e12e16c5abf362f1d28747452adadee'
|
|
43
|
+
PLATFORM='linux/amd64'
|
|
44
|
+
REVIEW_DIR="$(mktemp -d)"
|
|
45
|
+
|
|
46
|
+
docker pull --platform "$PLATFORM" "$IMAGE"
|
|
47
|
+
docker image inspect "$IMAGE" --format 'Id={{.Id}} OS={{.Os}} Architecture={{.Architecture}} User={{json .Config.User}} Entrypoint={{json .Config.Entrypoint}} Cmd={{json .Config.Cmd}} Labels={{json .Config.Labels}}'
|
|
48
|
+
docker image history --no-trunc "$IMAGE" > "$REVIEW_DIR/image-history.txt"
|
|
49
|
+
|
|
50
|
+
REVIEW_CONTAINER="$(docker create --platform "$PLATFORM" --pull never --entrypoint /bin/true "$IMAGE")"
|
|
51
|
+
docker export --output "$REVIEW_DIR/rootfs.tar" "$REVIEW_CONTAINER"
|
|
52
|
+
docker rm "$REVIEW_CONTAINER"
|
|
53
|
+
|
|
54
|
+
tar -tf "$REVIEW_DIR/rootfs.tar" > "$REVIEW_DIR/rootfs-files.txt"
|
|
55
|
+
mkdir -p "$REVIEW_DIR/rootfs"
|
|
56
|
+
tar --same-permissions -xf "$REVIEW_DIR/rootfs.tar" -C "$REVIEW_DIR/rootfs"
|
|
57
|
+
find "$REVIEW_DIR/rootfs/app" -type f -print > "$REVIEW_DIR/app-files.txt"
|
|
58
|
+
find "$REVIEW_DIR/rootfs/app" \( -type l -o -type f -links +1 \) -exec ls -ld {} + > "$REVIEW_DIR/app-links.txt"
|
|
59
|
+
find "$REVIEW_DIR/rootfs/app" -type f -name '*.node' -exec sha256sum {} + > "$REVIEW_DIR/native-binaries.sha256"
|
|
60
|
+
find "$REVIEW_DIR/rootfs" -type f \( -perm -0100 -o -perm -0010 -o -perm -0001 \) -print > "$REVIEW_DIR/executable-files.txt"
|
|
61
|
+
find "$REVIEW_DIR/rootfs" -type f \( -perm -4000 -o -perm -2000 \) -print > "$REVIEW_DIR/suid-sgid-files.txt"
|
|
62
|
+
find "$REVIEW_DIR/rootfs/app" -type f \( -name '.env' -o -name '.env.*' -o -name '*.pem' -o -name '*.key' -o -name '*.p12' -o -name '*.pfx' -o -name 'id_rsa*' \) -print > "$REVIEW_DIR/credential-like-files.txt"
|
|
63
|
+
find "$REVIEW_DIR/rootfs/app" -type f -name package.json -exec grep -nHE '"(preinstall|install|postinstall|prepare|prepack|postpack)"' {} + > "$REVIEW_DIR/lifecycle-hooks.txt"
|
|
64
|
+
grep -RInE 'child_process|spawn\(|fetch\(|AI_GATEWAY_MCP_URL|process\.env|writeFile|appendFile|unlink|rm\(' "$REVIEW_DIR/rootfs/app/packages/mcp-server/src" "$REVIEW_DIR/rootfs/app/packages/shared-sdk/src" > "$REVIEW_DIR/runtime-sensitive-code.txt"
|
|
65
|
+
```
|
|
66
|
+
|
|
67
|
+
If `sha256sum` is unavailable, use the platform's SHA-256 utility and preserve
|
|
68
|
+
the same report. Keep the review directory until the report is accepted; its
|
|
69
|
+
deletion is another filesystem change and requires approval for the exact path.
|
|
70
|
+
|
|
71
|
+
5. Read every generated inventory and report the inspection before proceeding.
|
|
72
|
+
Compare it with the versioned
|
|
73
|
+
[image content review](https://github.com/happy520ai/unified-ai-system/blob/2967617bb266c79992a6ed40e70bb59e67f661ca/docs/security/mcp-image-review-0.3.2.md).
|
|
74
|
+
Require linux/amd64 manifest digest
|
|
75
|
+
`sha256:cc17e923335f953631f59fb6a5ffcdce0e12e16c5abf362f1d28747452adadee`,
|
|
76
|
+
config digest
|
|
77
|
+
`sha256:c28166511ca9d95ab6f4c0c8ac0cbc2acbbfdac20f971d074ff6744d39e0248f`,
|
|
78
|
+
source `https://github.com/happy520ai/unified-ai-system`, revision
|
|
79
|
+
`541430d68fac6b35c512ea7d2df20fe45334e0a5`, version `0.3.2`, license
|
|
80
|
+
`Apache-2.0`, entrypoint `docker-entrypoint.sh`, and command
|
|
81
|
+
`node packages/mcp-server/src/index.js`.
|
|
82
|
+
|
|
83
|
+
Report these reviewed risks explicitly: the image uses the default root
|
|
84
|
+
user; includes Debian shell/package utilities and 11 base-image SUID/SGID
|
|
85
|
+
files; contains 549 internal pnpm links, two native Node binaries, and eight
|
|
86
|
+
lifecycle-hook declarations; and starts a child gateway with loopback HTTP.
|
|
87
|
+
The optional `AI_GATEWAY_MCP_URL` can make an HTTP or HTTPS connection only
|
|
88
|
+
when explicitly passed. The registered command below passes no host files,
|
|
89
|
+
environment variables, or ports and disables container networking. Stop on
|
|
90
|
+
any mismatch, unexpected link, credential-like file, native binary, hook,
|
|
91
|
+
privileged file, or sensitive-code behavior.
|
|
92
|
+
6. Explain the second stage: it persists a Codex MCP configuration and permits
|
|
93
|
+
Codex to launch the inspected image in a later task. Obtain a separate
|
|
94
|
+
explicit approval for registration and activation; the download approval
|
|
95
|
+
does not carry over.
|
|
96
|
+
7. After that second approval, register the reviewed platform digest with
|
|
97
|
+
pulling, container networking, Linux capabilities, and privilege escalation
|
|
98
|
+
disabled, then inspect the stored configuration:
|
|
99
|
+
|
|
100
|
+
```bash
|
|
101
|
+
codex mcp add unified-ai-system -- docker run --rm -i --pull never --platform linux/amd64 --network none --cap-drop ALL --security-opt no-new-privileges ghcr.io/happy520ai/unified-ai-system/mcp-server@sha256:cc17e923335f953631f59fb6a5ffcdce0e12e16c5abf362f1d28747452adadee
|
|
102
|
+
codex mcp get unified-ai-system --json
|
|
103
|
+
```
|
|
104
|
+
|
|
105
|
+
8. Restart Codex or open a new task, then use `/mcp verbose` to confirm that all
|
|
106
|
+
eight tools are available. Remove the registration when it is no longer
|
|
107
|
+
wanted:
|
|
108
|
+
|
|
109
|
+
```bash
|
|
110
|
+
codex mcp remove unified-ai-system
|
|
111
|
+
```
|
|
112
|
+
|
|
113
|
+
Removing the registration does not remove the pulled image from Docker's
|
|
114
|
+
cache. Treat image-cache deletion as a separate host-state change and obtain
|
|
115
|
+
approval before doing it.
|
|
116
|
+
|
|
117
|
+
## When to Use This Skill
|
|
118
|
+
|
|
119
|
+
- Use when a user asks whether Unified AI System is healthy or ready.
|
|
120
|
+
- Use when a user wants a credential-free gateway chat proof.
|
|
121
|
+
- Use when a user asks about the gateway's knowledge, workflow, or workforce
|
|
122
|
+
surfaces.
|
|
123
|
+
- Use when a user wants evidence from the bundled MCP tools rather than a claim
|
|
124
|
+
inferred from documentation or process exit codes.
|
|
125
|
+
|
|
126
|
+
Do not use this skill for generic model comparisons, unrelated MCP servers, or
|
|
127
|
+
deploying a production gateway.
|
|
128
|
+
|
|
129
|
+
## Workflow
|
|
130
|
+
|
|
131
|
+
1. Confirm that the `unified-ai-system` MCP tools are available in the current
|
|
132
|
+
task. If they are absent, follow the approved setup above and wait for a
|
|
133
|
+
restarted or new task.
|
|
134
|
+
2. Call `gateway_health`, then `gateway_readiness`, before attempting chat.
|
|
135
|
+
3. Select the narrowest additional tool that answers the request.
|
|
136
|
+
4. Report returned provider, execution mode, readiness, and blockers exactly.
|
|
137
|
+
5. Separate transport success from product, production-readiness, autonomy, or
|
|
138
|
+
AGI claims.
|
|
139
|
+
|
|
140
|
+
## Tool Map
|
|
141
|
+
|
|
142
|
+
- `gateway_health`: managed gateway status and provider mode
|
|
143
|
+
- `gateway_readiness`: chat-path readiness and blockers
|
|
144
|
+
- `gateway_chat`: deterministic credential-free chat proof
|
|
145
|
+
- `knowledge_readiness`: knowledge subsystem readiness
|
|
146
|
+
- `workflow_health`: workflow subsystem status
|
|
147
|
+
- `workflow_actions`: available workflow actions
|
|
148
|
+
- `workforce_health`: workforce subsystem status
|
|
149
|
+
- `workforce_agents`: available workforce agents
|
|
150
|
+
|
|
151
|
+
## Example
|
|
152
|
+
|
|
153
|
+
```text
|
|
154
|
+
User: Check whether the local gateway is ready, then prove chat works safely.
|
|
155
|
+
|
|
156
|
+
Agent:
|
|
157
|
+
1. Call gateway_health.
|
|
158
|
+
2. Call gateway_readiness.
|
|
159
|
+
3. Call gateway_chat only if both results prove fake-provider mode.
|
|
160
|
+
4. Report provider, model, execution mode, response, and every blocker.
|
|
161
|
+
```
|
|
162
|
+
|
|
163
|
+
## Safety Boundaries
|
|
164
|
+
|
|
165
|
+
- Keep the credential-free local fake provider as the default.
|
|
166
|
+
- Never request, read, or transmit provider credentials through this skill.
|
|
167
|
+
- Do not enable or call a real provider without explicit scoped authorization.
|
|
168
|
+
- Treat MCP registration, image pulls, container creation, networking, and
|
|
169
|
+
teardown as host-state changes that require informed user approval.
|
|
170
|
+
- Never substitute a mutable tag, the multi-platform index, or an unreviewed
|
|
171
|
+
platform manifest for the reviewed linux/amd64 digest. Keep download and
|
|
172
|
+
inspection approval separate from registration and activation approval.
|
|
173
|
+
- Keep `--pull never` in the registered command. If the reviewed image is
|
|
174
|
+
absent from the local cache, fail closed and return to the first approval
|
|
175
|
+
stage.
|
|
176
|
+
- Keep `--network none`, `--cap-drop ALL`, and
|
|
177
|
+
`--security-opt no-new-privileges` in the registered command.
|
|
178
|
+
- Do not claim production readiness, L5 autonomy, or AGI from a healthy handshake.
|
|
179
|
+
- Treat a zero exit code as transport evidence, not proof that readiness gates
|
|
180
|
+
passed.
|
|
181
|
+
|
|
182
|
+
## Limitations
|
|
183
|
+
|
|
184
|
+
- This skill file does not bundle the MCP server, Docker image, or Codex
|
|
185
|
+
configuration. It only operates tools supplied by the separately installed
|
|
186
|
+
official integration.
|
|
187
|
+
- It does not deploy, benchmark, or certify the gateway for production use.
|
|
188
|
+
- The credential-free chat tool proves only the deterministic local fake path.
|
|
189
|
+
- It does not configure real providers or handle provider credentials.
|
|
190
|
+
- The published MCP image requires Docker.
|
|
191
|
+
- The reviewed `0.3.2` path is limited to linux/amd64. Do not activate an arm64
|
|
192
|
+
or other platform image without a separate content review.
|
|
193
|
+
- The image runs as the container's default root user and bundles the gateway
|
|
194
|
+
source, package-manager tooling, native dependencies, and base-image
|
|
195
|
+
SUID/SGID files. The registered command drops capabilities, prevents new
|
|
196
|
+
privileges, disables networking, and leaves the image in Docker's cache.
|
|
197
|
+
- Existing Codex tasks may not hot-load a newly installed MCP configuration.
|
|
198
|
+
|
|
199
|
+
## Troubleshooting
|
|
200
|
+
|
|
201
|
+
- If the tools are missing after approved registration, inspect
|
|
202
|
+
`codex mcp get unified-ai-system --json`, then restart Codex or start a new
|
|
203
|
+
task.
|
|
204
|
+
- If readiness is blocked, report the returned blocker instead of retrying chat
|
|
205
|
+
blindly.
|
|
206
|
+
- If the runtime might use a real provider, stop before chat and keep the
|
|
207
|
+
session read-only.
|
|
208
|
+
|
|
209
|
+
## Additional Resources
|
|
210
|
+
|
|
211
|
+
- [Unified AI System](https://github.com/happy520ai/unified-ai-system)
|
|
212
|
+
- [60-second Codex MCP quickstart](https://github.com/happy520ai/unified-ai-system/blob/master/docs/codex-mcp-quickstart.md)
|
|
213
|
+
- [MCP server guide](https://github.com/happy520ai/unified-ai-system/blob/master/packages/mcp-server/README.md)
|
|
214
|
+
- [MCP image content review](https://github.com/happy520ai/unified-ai-system/blob/2967617bb266c79992a6ed40e70bb59e67f661ca/docs/security/mcp-image-review-0.3.2.md)
|
package/package.json
CHANGED