industrial_sentinel

industrial_sentinel is a skill for Claude Code, Codex from duolongworld/AI_Renaissance. It costs 100 tokens per session (4,934 once invoked), scanned A, original, Apache-2.0.

An industry-analysis framework that studies where a company sits in its supply chain—from suppliers to producers to customers—and assesses the industry's current conditions, turning points, and life-cycle stage. It also classifies a stock as growth, cyclical, value, theme-based, or mixed.

In plain words
What is it for?
Use it to assess an industry or stock by code, name, industry, or preset, including supply-chain structure, demand conditions, possible turning points, policy catalysts, and life-cycle stage.
Why use it?
It separates different parts of an industry's situation instead of reducing the answer to a single outlook. It uses supplied financial and industry data and keeps the analysis traceable.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to assess an industry or stock by code, name, industry, or preset, including supply-chain structure, demand conditions, possible turning points, policy catalysts, and life-cycle stage.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/duolongworld/ai_renaissance/industrial_sentinel
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 duolongworld/AI_Renaissance --skill industrial_sentinel
Clone the repo
git clone --depth 1 https://github.com/duolongworld/AI_Renaissance

Made for: Claude Code, 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 industrial_sentinel

README.md
[![agentmods](https://agentmods.dev/badge/skills/duolongworld/ai_renaissance/industrial_sentinel/github.svg)](https://agentmods.dev/skills/duolongworld/ai_renaissance/industrial_sentinel)
Your own site
<a href="https://agentmods.dev/skills/duolongworld/ai_renaissance/industrial_sentinel"><img src="https://agentmods.dev/badge/skills/duolongworld/ai_renaissance/industrial_sentinel/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 industrial_sentinel

Your own site · 80×15
<a href="https://agentmods.dev/skills/duolongworld/ai_renaissance/industrial_sentinel"><img src="https://agentmods.dev/badge/skills/duolongworld/ai_renaissance/industrial_sentinel.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 100 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 4,934 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 pass 7 Sept 2026
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.00100 $0.04934
Opus 5 $0.00050 $0.02467
Sonnet 5 $0.00020 $0.00987
Haiku 4.5 $0.00010 $0.00493

Measured 12d ago against content hash 63e227a2e66e, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

industrial_sentinel 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.

The scan reads SKILL.md. This mod also ships 10 executable files (core/auto_detect_preset.py, core/data_collection_guide.py, core/name_preset_mapping.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.

skills/industry/industrial_sentinel/SKILL.md · 400 lines

How it starts

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

Industrial Sentinel | 产业链中观分析框架

Trigger: 当用户提到"景气度"、"/景气度"时激活。


1. 快速开始

本 skill 位于 AI_Renaissance 项目 skills/industry/industrial_sentinel/ 目录下,由 Agent 通过 runtime.py 调用。

1.1 环境准备

# 进入 skill 目录(在 AI_Renaissance 项目根目录下)
cd skills/industry/industrial_sentinel

# 运行分析(支持代码/简称)
./run.sh 002916.SZ
./run.sh 深南电路

前置依赖:Python 3.9+。独立方法论框架尽量只依赖标准库;项目集成模式通过 data_sources/ 使用主项目已有 provider 与依赖。

1.2 触发方式

常见触发词/景气度 [代码]景气度 [行业/个股]

输入股票代码、简称、行业词或 preset 时,项目级 IndustryAgent 会先做输入归一化,再调用项目 data_sources/ 获取或注入标准化数据,最后由 runtime.py 输出行业景气度、拐点状态、生命周期、个股类型和产业链结构摘要。

项目级 IndustryAgent 接入时只返回标准 Signal 和结构化 meta,不生成、不落盘、不返回 HTML 报告路径。HTML 仅用于 ./run.sh / core/pipeline.py 的独立 CLI 或人工调试模式。

CLI 完整输出(默认):

  • 产业链结构卡片(上游/中游/下游)
  • 产业链景气度判定(行业周期/供需拐点/政策催化剂)
  • 拐点状态(五态模型)
  • 生命周期阶段
  • System B 个股类型判定
  • HTML 仪表盘报告

如需轻量版(只看产业链结构):

./run.sh <code> --lite

1.3 项目级执行流程(关键)

这是本 skill 的核心设计:Skill 不直接联网抓数,项目数据层负责 provider 获取、解析和缓存。

当主项目调用 IndustryAgent.analyze() 后,应按以下流程执行:

Step 1: IndustryAgent 识别输入类型
        → stock_code / stock_name / industry / preset

Step 2: stock_code 输入调用 data_sources.industrial_sentinel
        → 获取行业景气数据、财务数据、缓存状态与降级原因

Step 3: industry / preset 输入只做框架路由
        → 不把 preset 命中当作真实景气结论

Step 4: runtime.py 消费标准化 industry_result / financial_data / config
        → 生成 direction / confidence / reasoning / signals / meta

Step 5: IndustryAgent 包装为标准 Signal
        → Signal 构造异常时返回 neutral,并标记 needs_human_review

重要

  • 不要在 Skill 内新增 provider 抓数逻辑
  • 真实 fetching/parsing/provider 放在项目 data_sources/
  • 数据缺失时输出低置信降级结果、needs_data、缺失字段和采集任务,不编造行业景气度
  • HTML 只属于 CLI / 人工调试路径,不进入 Orchestrator 主流程

2. 核心架构

2.1 三维度独立展示

当前框架不合成单一“产业拐点指数”,三个维度各自独立展示:

维度 核心问题 展示形式
产业链景气度 行业当前景气如何? 三维度描述(行业周期/供需拐点/政策催化剂)+ 真实数据
产业链拐点 处于五态模型的哪个阶段? 五态判定 + 信号匹配详情
产业链生命周期 行业处于生命周期的哪个阶段? 大卡片(导入期/成长期/成熟期/衰退期)

Read the full file on GitHub · 400 lines

Files

What ships with it

38 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 12d ago First seen · 400 lines · 100 tokens per session scan A 63e227a2e66e

Subscribe to this mod's changes

industrial_sentinel is a skill published in the GitHub repository duolongworld/AI_Renaissance (59 stars, last pushed 14d ago), licensed Apache-2.0. It adds 100 tokens to every session and 4,934 once invoked, about $0.0005 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.

Related

Other skills, from other repositories

sector-rotation

An analysis framework for comparing industries in the Chinese A-share stock market, using business conditions, price momentum, valuation, and money flows. It produces rankings and higher- or lower-allocation suggestions.

HKUDS/Vibe-Trading · 39 tokens

strategy-pivot-designer

Detect backtest iteration stagnation and generate structurally different strategy pivot proposals when parameter tuning reaches a local optimum.

tradermonty/claude-trading-skills · 28 tokens

twitter-reader

Read Twitter/X for financial research using opencli (read-only). Use this skill whenever the user wants to read their Twitter feed, search for financial tweets, view bookmarks, look up user profiles, or gather market sentiment from Twitter/X. Triggers include: "check my feed", "search Twitter for", "show my…

himself65/finance-skills · 161 tokens

chenhao-limit-up

A framework for judging Chinese A-share stocks that have reached the daily price-rise limit, using market mood, sector leadership, and trading momentum.

questflowai/investorskills · 44 tokens

trading-risk-gate

Unified pre-trade safety gate: Ruin check (Law #1), ergodicity audit, and win-rate dominance validation. Absorbs: ergodicity-check, law-of-ruin, win-rate-dominance.

winstonkoh87/Athena-Public · 53 tokens

furusato

A Japanese hometown-tax donation manager for furusato nozei, a system where donations to municipalities can qualify for an income-tax or local-tax deduction. It reads donation receipts, stores donation records, and calculates deduction limits.

kazukinagata/shinkoku · 102 tokens