software-ai-integration

software-ai-integration is a skill for Codex from vasilyu1983/AI-Agents-public. It costs 38 tokens per session (6,502 once invoked), scanned A, original, MIT.

A guide to adding large-language-model features to applications, such as chat, generated content, structured responses, and streaming output.

In plain words
What is it for?
Use it to integrate AI APIs, build chat or suggestion interfaces, validate structured data, add guardrails, route between providers, and use retrieved context.
Why use it?
It helps developers handle unreliable model output, safety checks, provider differences, response speed, cost, and evaluation when adding AI features.

Skill for Codex

Written for Codex: agents/openai.yaml present. Also seen: mentions Claude Code; mentions Codex.

Good fit Use it to integrate AI APIs, build chat or suggestion interfaces, validate structured data, add guardrails, route between providers, and use retrieved context.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/vasilyu1983/ai-agents-public/software-ai-integration
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add vasilyu1983/AI-Agents-public --skill software-ai-integration
Clone the repo
git clone --depth 1 https://github.com/vasilyu1983/AI-Agents-public

Made for: Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for software-ai-integration

README.md
[![agentmods](https://agentmods.dev/badge/skills/vasilyu1983/ai-agents-public/software-ai-integration/github.svg)](https://agentmods.dev/skills/vasilyu1983/ai-agents-public/software-ai-integration)
Your own site
<a href="https://agentmods.dev/skills/vasilyu1983/ai-agents-public/software-ai-integration"><img src="https://agentmods.dev/badge/skills/vasilyu1983/ai-agents-public/software-ai-integration/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for software-ai-integration

Your own site · 80×15
<a href="https://agentmods.dev/skills/vasilyu1983/ai-agents-public/software-ai-integration"><img src="https://agentmods.dev/badge/skills/vasilyu1983/ai-agents-public/software-ai-integration.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 38 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 6,502 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 2 findings, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium Excessive Agency · line 256
    Skill enables autonomous high-impact decisions without human-in-the-loop verification. Critical operations (destructive commands, financial transactions, data deletion) should require explicit user confirmation.
    Fix: Add human-in-the-loop confirmation for destructive, irreversible, or high-impact operations. Never auto-execute commands that modify files, send data, or alter system state.
  • medium Excessive Agency · line 340
    Skill enables autonomous high-impact decisions without human-in-the-loop verification. Critical operations (destructive commands, financial transactions, data deletion) should require explicit user confirmation.
    Fix: Add human-in-the-loop confirmation for destructive, irreversible, or high-impact operations. Never auto-execute commands that modify files, send data, or alter system state.
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00038 $0.06502
Opus 5 $0.00019 $0.03251
Sonnet 5 $0.00008 $0.01300
Haiku 4.5 $0.00004 $0.00650

Measured 7d ago against content hash 5e3c14f1563f, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

software-ai-integration scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 7d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/check_injection_defenses.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

frameworks/shared-skills/skills/software-ai-integration/SKILL.md · 362 lines

How it starts

The opening of the file, as written. The whole thing — 362 lines — stays where its author put it; the contents beside it link to each section on GitHub.

AI-Augmented Product Engineering

Integrate LLMs and AI capabilities into production applications with clean architecture, cost discipline, and reliable user experience.

Quick Reference

Concern Defaults
LLM API integration Anthropic SDK, OpenAI SDK, Vercel AI SDK
Streaming responses SSE / ReadableStream + AI SDK streamText/streamObject
Structured output JSON mode, tool_use/function calling, Zod schemas
Chat interface AI SDK useChat hook, custom streaming UI
AI-assisted forms Inline suggestions, auto-complete, content generation
Guardrails Input/output filtering, content moderation, PII detection
Cost management Token counting, caching (semantic + exact), model routing
Multi-provider AI SDK provider abstraction, Portkey, LiteLLM, or a thin internal router
Evaluation Human feedback, LLM-as-judge, A/B testing AI variants
RAG in products Vector search + context injection (see also ai-rag for deeper patterns)

When to Use This Skill

  • Adding AI-powered features to an existing product (chat, generation, suggestions)
  • Building streaming UI for LLM responses in web or mobile applications
  • Implementing structured output with schema validation from LLM calls
  • Designing cost control and caching strategies for AI features
  • Building multi-provider fallback and model routing logic
  • Implementing guardrails, content moderation, and safety layers
  • Choosing AI UX patterns (loading states, regenerate, feedback, attribution)

When NOT to Use This Skill

  • LLM lifecycle management (fine-tuning, deployment, monitoring)ai-llm
  • Agent system architecture and orchestrationai-agents
  • Prompt engineering techniques and patternsai-prompt-engineering
  • RAG system architecture (indexing, retrieval, chunking)ai-rag
  • ML model training and data scienceai-ml-data-science
  • MLOps and model serving infrastructureai-mlops
  • Building MCP servers and tool protocolsagents-mcp

Read the full file on GitHub · 362 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 7d ago First seen · 362 lines · 38 tokens per session scan A 5e3c14f1563f

Subscribe to this mod's changes

software-ai-integration is a skill published in the GitHub repository vasilyu1983/AI-Agents-public (87 stars, last pushed 8d ago), licensed MIT. It adds 38 tokens to every session and 6,502 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.

Related

Other skills, from other repositories