npx skills add tradermonty/claude-trading-skills --skill kanchi-dividend-review-monitor
mphinance/alpha-skills
kanchi-dividend-review-monitor
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 減?
Installation
npx skills add mphinance/alpha-skills --skill kanchi-dividend-review-monitor
Similar popular skills
Related neighbors and high-traction skills in the same topics — useful to compare before installing.
Monitor dividend portfolios with Kanchi-style forced-review triggers (T1-T5) and convert anomal…
1.8K installsScreen US stocks for high-quality dividend opportunities combining value characteristics (P/E r…
2.4K installsUse this skill to find high-quality dividend growth stocks (12%+ annual dividend growth, 1.5%+ …
1.9K installsProvide US dividend tax and account-location workflow for Kanchi-style income portfolios.
1.9K installsConvert Kanchi-style dividend investing into a repeatable US-stock operating procedure. Use whe…
1.8K installsHigh-dividend stock screen via Longbridge — analyse high-dividend-yield strategies for A-shares…
513 installsAlso in this package
Other skills from mphinance/alpha-skills · top by installs.
npx skills add mphinance/alpha-skills
More details
Agent compatibility
Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.
Also listed on
Alternate registries and mirrors of this skill.
Repository health
main
Package contents
Files included with this skill beyond the listing page.
-
skill md
SKILL.md4,126 B -
docs
README.md4,126 B -
docs
SUMMARY.md343 B
History
- First seen on skills.sh
- First recorded snapshot · 82 installs
SKILL.md
Kanchi Dividend Review Monitor
Overview
Detect abnormal dividend-risk signals and route them into a human review queue. Treat automation as anomaly detection, not automated trade execution.
When to Use
Use this skill when the user needs:
- Daily/weekly/quarterly anomaly detection for dividend holdings.
- Forced review queueing for T1-T5 risk triggers.
- 8-K/governance keyword scans tied to portfolio tickers.
- Deterministic
OK/WARN/REVIEWoutput before manual decision making.
Prerequisites
Provide normalized input JSON that follows:
references/input-schema.md
If upstream data is unavailable, provide at least:
tickerinstrument_typedividend.latest_regulardividend.prior_regular
Non-Negotiable Rule
Never auto-sell based only on machine triggers. Always create WARN or REVIEW evidence for human confirmation first.
State Machine
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.
Monitoring Cadence
- Daily:
- T1 dividend cut/suspension. - T4 SEC filing keyword scan (8-K oriented).
- Weekly:
- T3 proxy credit stress checks.
- Quarterly:
- T2 coverage deterioration and T5 structural decline scoring.
Workflow
1) Normalize input dataset
Collect per ticker fields in one JSON document:
- Dividend points (latest regular, prior regular, missing/zero flag).
- Coverage fields (FCF or FFO or NII, dividends paid, ratio history).
- Balance-sheet trend fields (net debt, interest coverage, buybacks/dividends).
- Filing text snippets (especially recent 8-K or equivalent alert text).
- Operations trend fields (revenue CAGR, margin trend, guidance trend).
Use references/input-schema.md for field definitions and sample payload.
2) Run the rule engine
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., reviewqueue20260227.json and .md).
3) Prioritize and deduplicate
If multiple triggers fire:
- Keep all findings for audit trail.
- Escalate final state to highest severity only.
- Store trigger reasons as single-line evidence.
4) Generate human review tickets
For each REVIEW ticker, include:
- Trigger IDs and evidence.
- Suspected failure mode.
- Required manual checks for next decision.
Use references/review-ticket-template.md output format.
SEC Filing Guardrail
When implementing live SEC fetchers:
- Include a compliant
User-Agentstring (name + email). - Use caching and throttling.
- Respect SEC fair-access guidance.
Output Contract
Always return:
- Queue JSON with summary counts and ticker-level findings.
- Markdown dashboard for quick triage.
- List of immediate
REVIEWtickets.
Multi-Skill Handoff
- Consume ticker universe and baseline assumptions from
kanchi-dividend-sop. - Feed
REVIEWresults back tokanchi-dividend-sopfor re-underwriting and position-size review. - Share account-type context with
kanchi-dividend-us-tax-accountingwhen risk events imply account relocation decisions.
Resources
scripts/buildreviewqueue.py: local rule engine for T1-T5.scripts/tests/testbuildreview_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.