From trading-dividend-investing
Monitor dividend portfolios with Kanchi-style forced-review triggers (T1-T5) and convert anomalies into OK/WARN/REVIEW states without auto-selling. Use when users ask for 減配検知, 8-Kガバナンス監視, 配当安全性モニタリング, REVIEWキュー自動化, or periodic dividend risk checks.
How this skill is triggered — by the user, by Claude, or both
Slash command
/trading-dividend-investing:kanchi-dividend-review-monitorThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Detect abnormal dividend-risk signals and route them into a human review queue.
Detect abnormal dividend-risk signals and route them into a human review queue. Treat automation as anomaly detection, not automated trade execution.
Use this skill when the user needs:
OK/WARN/REVIEW output before manual decision making.Provide normalized input JSON that follows:
references/input-schema.mdIf upstream data is unavailable, provide at least:
tickerinstrument_typedividend.latest_regulardividend.prior_regularNever auto-sell based only on machine triggers.
Always create WARN or REVIEW evidence for human confirmation first.
OK: no action.WARN: add to next check cycle and pause optional adds.REVIEW: immediate human review ticket + pause adds.Use references/trigger-matrix.md for trigger thresholds and actions.
Collect per ticker fields in one JSON document:
Use references/input-schema.md for field definitions
and sample payload.
Run:
python3 skills/kanchi-dividend-review-monitor/scripts/build_review_queue.py \
--input /path/to/monitor_input.json \
--output-dir reports/
The script maps each ticker to OK/WARN/REVIEW based on T1-T5.
Output files are saved to the specified directory with dated filenames (e.g., review_queue_20260227.json and .md).
If multiple triggers fire:
For each REVIEW ticker, include:
Use references/review-ticket-template.md output format.
When implementing live SEC fetchers:
User-Agent string (name + email).Always return:
REVIEW tickets.kanchi-dividend-sop.REVIEW results back to kanchi-dividend-sop for re-underwriting and position-size review.kanchi-dividend-us-tax-accounting when risk events imply account relocation decisions.scripts/build_review_queue.py: local rule engine for T1-T5.scripts/tests/test_build_review_queue.py: unit tests for T1-T5 and report rendering.references/trigger-matrix.md: trigger definitions, cadence, and actions.references/input-schema.md: normalized input schema and sample JSON.references/review-ticket-template.md: standardized manual-review ticket layout.npx claudepluginhub pasie15/claude-trading-skills-marketplace --plugin trading-dividend-investingGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.