Borrowing it
Nothing to install: this file belongs to ruanrongman/IntelliConnect. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/ruanrongman/IntelliConnect/main/.codex/skills/intelliconnect-service-style/SKILL.mdgit clone --depth 1 https://github.com/ruanrongman/IntelliConnectWrote 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.
[](https://agentmods.dev/skills/ruanrongman/intelliconnect/intelliconnect-service-style)<a href="https://agentmods.dev/skills/ruanrongman/intelliconnect/intelliconnect-service-style"><img src="https://agentmods.dev/badge/skills/ruanrongman/intelliconnect/intelliconnect-service-style/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.
<a href="https://agentmods.dev/skills/ruanrongman/intelliconnect/intelliconnect-service-style"><img src="https://agentmods.dev/badge/skills/ruanrongman/intelliconnect/intelliconnect-service-style.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector pass
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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00087 | $0.02101 |
| Opus 5 | $0.00044 | $0.01051 |
| Sonnet 5 | $0.00017 | $0.00420 |
| Haiku 4.5 | $0.00009 | $0.00210 |
Grade A, and why
intelliconnect-service-style 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 12d ago.
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.
How it starts
The opening of the file, as written. The whole thing — 215 lines — stays where its author put it; the contents beside it link to each section on GitHub.
IntelliConnect Service Style
Use this skill when implementing backend service/serviceimpl code in IntelliConnect. Prefer PUT/update flows that identify the target row by id.
Workflow
- Read existing nearby examples before editing:
src/main/java/top/rslly/iot/services/agent/*ServiceImpl.javasrc/main/java/top/rslly/iot/services/thingsModel/*ServiceImpl.java- matching
dao/,models/, andparam/request/files.
- Prefer the existing repository/service naming style over new abstractions.
- Add or update the request DTO in
top.rslly.iot.param.requestwhen the service method accepts input from controller code. - Add derived Spring Data repository methods for simple lookups and pageable queries.
- Use database-backed pagination for paged APIs; do not manually paginate non-empty lists in the service.
- Use streams for simple collection projection, but avoid repeated repository calls and mutation-heavy stream code.
- Keep controller permission checks outside mutating service methods when the repository pattern already uses
SafetyServiceImplwrappers. - Before implementing any delete path, inspect all related tables/repositories and decide whether the correct behavior is dependency failure or cascade delete.
- If the dependency policy is not already obvious from nearby code, ask the user whether to return
HAS_DEPENDENCIESor delete related records too. - Compile with JDK 21 after edits:
$env:JAVA_HOME='C:\Users\Lenovo\.jdks\ms-21.0.9'; $env:Path="$env:JAVA_HOME\bin;$env:Path"; .\mvnw.cmd -q -DskipTests compile
Service Interface Pattern
Use interfaces under the same service package as the implementation.
Common method shape:
List<Entity> findAllById(int id);
List<Entity> findAllByProductId(int productId);
JsonResult<?> getThing(String token);
JsonResult<?> postThing(ThingParam param);
JsonResult<?> updateThing(ThingParam param);
JsonResult<?> deleteThing(int id);
Use String token for list getters that need user-specific filtering. Do not pass token into post, update, or delete when controller/SafetyService will authorize the operation before calling the service.
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.
- 12d ago First seen · 215 lines · 87 tokens per session scan A 68979837eb64
intelliconnect-service-style is a skill published in the GitHub repository ruanrongman/IntelliConnect (145 stars, last pushed 3d ago), licensed Apache-2.0. It adds 87 tokens to every session and 2,101 once invoked, about $0.0004 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-08-30.
Other skills, from other repositories
archestra-dev-interactions-migrations
Use BEFORE writing or running any Drizzle migration that touches the interactions table (or any other very large, write-hot table). The interactions table is the platform's biggest, append-heavy table — every LLM proxy call writes a row — so a careless migration can take a write-blocking lock and stall the proxy.…
archestra-dev-llm-providers
Use when adding an LLM provider, changing proxy adapters or provider routes, fixing streaming/tool-call translation bugs, editing model fetchers or model handling, or touching provider credentials/enums and model constants.
archestra-dev-backend
Use when adding or changing Archestra backend routes, models, services, API request/response schemas, endpoint permissions, or OpenAPI/codegen for the generated API client.
nornweave-api
Give AI agents their own email inboxes using the NornWeave API. Use when building email agents, sending/receiving emails programmatically, managing inboxes, retrieving threads, searching messages, or integrating with email providers (Mailgun, SES, SendGrid, Resend). NornWeave provides LLM-ready markdown parsing and…
flowllm-dev
FlowLLM repository development guidance. Use when working in the flowllm codebase to implement, debug, test, review, or document FlowLLM runtime behavior, including CLI/client calls, services, application wiring, jobs, steps, components, configuration, streaming, registry registration, and tests.
n8n-code-tool
Write JavaScript or Python for the n8n Custom Code Tool (@n8n/n8n-nodes-langchain.toolCode) — the AI-agent-callable tool, NOT the workflow Code node. Use when building a Code Tool attached to an AI Agent, writing code that an LLM will invoke, parsing the query input, returning a string result, defining an input schema…