Best for
- Kanchi-style dividend stock selection adapted for US equities.
- A repeatable screening and pullback-entry process instead of ad-hoc picks.
- One-page underwriting memos with explicit invalidation conditions.
tradermonty/claude-trading-skills/skills/kanchi-dividend-sop/SKILL.md
Use it for engineering and operations tasks; the detail page covers purpose, installation, and practical steps.
Decision brief
Convert Kanchi-style dividend investing into a repeatable US-stock operating procedure. Covers screening, deep dive, entry planning, and post-purchase monitoring cadence.
Compatibility matrix
| Platform | Status | Evidence | What to check |
|---|---|---|---|
| Codex | Not declared | No explicit evidence | Portability before use |
| Claude Code | Not declared | No explicit evidence | Portability before use |
| Cursor | Not declared | No explicit evidence | Portability before use |
| Gemini CLI | Not declared | No explicit evidence | Portability before use |
Installation
The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.
npx skills add https://github.com/tradermonty/claude-trading-skills --skill "skills/kanchi-dividend-sop"Inspect the Agent Skill "kanchi-dividend-sop" from https://github.com/tradermonty/claude-trading-skills/blob/51c790740048c4cbc9b7cc82a7f3ddc7b12d31d0/skills/kanchi-dividend-sop/SKILL.md at commit 51c790740048c4cbc9b7cc82a7f3ddc7b12d31d0. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.
Workflow
The entry signal script requires FMP API access:
Collect and lock the parameters first: - Objective: current cash income vs dividend growth. - Max positions and position-size cap. - Allowed instruments: stock only, or include REIT/BDC/ETF. - Preferred account type context: taxable vs IRA-like accounts.
Primary rule: - Step-1 yield = the regular forward yield = latestdeclaredregular dividend × cadence-implied frequency / price (WS-1 dividendbasis.py). Never use profile.lastDividend / TTM — it lags the latest declared raise (defect D5) and silently bundles specials (D4). - Apply…
Safety is sector-specific — a uniform GAAP/FCF triad mis-judges banks (FCF meaningless) and regulated utilities (FCF structurally negative). Use references/sector-step2-modules.md; the deterministic dispatch is scripts/payoutsafety.py.
Use references/valuation-and-one-off-checks.md and apply sector-specific valuation logic: - Financials: PER x PBR can remain primary. - REITs: use P/FFO or P/AFFO instead of plain P/E. - Asset-light sectors: combine forward P/E, P/FCF, and historical range.
Permission review
The documentation asks the agent to run terminal commands or scripts.
python3 skills/kanchi-dividend-sop/scripts/build_sop_plan.py \The documentation asks the agent to run terminal commands or scripts.
python3 skills/kanchi-dividend-sop/scripts/build_entry_signals.py \Evidence record
| Signal | Value | Evidence type | Meaning |
|---|---|---|---|
| Quality score | 91/100 | Computed | Documentation, specificity, maintenance, and trust rules |
| Repository stars | 2,715 | Source | Repository attention, not individual Skill quality |
| Compatibility | 0 platforms | Source | Declared in the catalog source record |
| Usage guide | automated source guide | Editorial | Generated or reviewed according to the visible evidence level |
Pinned source
Implement Kanchi's 5-step method as a deterministic workflow for US dividend investing. Prioritize safety and repeatability over aggressive yield chasing.
Use this skill when the user needs:
The entry signal script requires FMP API access:
export FMP_API_KEY=your_api_key_here
Prepare one of the following inputs before running the workflow:
skills/value-dividend-screener/scripts/screen_dividend_stocks.py.skills/dividend-growth-pullback-screener/scripts/screen_dividend_growth_rsi.py.When using --input, provide JSON in one of these formats:
{
"profile": "balanced",
"candidates": [
{"ticker": "JNJ", "bucket": "core"},
{"ticker": "O", "bucket": "satellite"}
]
}
Or simplified:
{
"tickers": ["JNJ", "PG", "KO"]
}
The optional value-dividend-screener and
dividend-growth-pullback-screener handoffs use stocks[].symbol.
Both build_sop_plan.py --input and build_entry_signals.py --input
accept that shape directly, as well as the native candidates[].ticker and
tickers[] shapes above.
For deterministic artifact generation, provide tickers to:
python3 skills/kanchi-dividend-sop/scripts/build_sop_plan.py \
--tickers "JNJ,PG,KO" \
--output-dir reports/
For Step 5 entry timing artifacts. --yield-floor is mandatory — it is
the Step-1 yield gate; without it every row fail-safes to STEP1-RECHECK
(a row can never reach a PASS tier without Step 1). Pass --profile /
--safety-bias for run_context, and --events-json for the Step 4b scan
(absent ⇒ every row is treated as SKIPPED and a TRIGGERED name is capped
to HOLD-REVIEW — never silently clean):
python3 skills/kanchi-dividend-sop/scripts/build_entry_signals.py \
--tickers "JNJ,PG,KO" \
--alpha-pp 0.5 \
--yield-floor 3.0 \
--profile balanced --safety-bias medium \
--events-json reports/kanchi_events_2026-05-17.json \
--output-dir reports/
Collect and lock the parameters first:
Load references/default-thresholds.md and apply baseline
settings unless the user overrides.
Start with a quality-biased universe:
Use explicit source priority for ticker collection:
skills/value-dividend-screener/scripts/screen_dividend_stocks.py output (FMP/FINVIZ).skills/dividend-growth-pullback-screener/scripts/screen_dividend_growth_rsi.py output.Return a ticker list grouped by bucket before moving forward.
Primary rule:
latest_declared_regular dividend × cadence-implied frequency / price (WS-1 dividend_basis.py).
Never use profile.lastDividend / TTM — it lags the latest declared raise
(defect D5) and silently bundles specials (D4).Trap & freshness controls (machine-emitted by dividend_basis.py):
special_dividend_flag → exclude specials; report regular vs ttm yield.variable_policy_flag → FAIL (CALM-style; not an income base).cut_flag → FAIL; suspension_flag → FAIL.freeze_flag → HOLD-REVIEW (income cash-cow exception decided in
Step 8 synthesis only if safety is clean & unblocked).floor_borderline) and the latest declared dividend is not
confirmed from an authoritative source, emit STEP1-RECHECK — never a
hard FAIL (this is the CFR D5 fix).Safety is sector-specific — a uniform GAAP/FCF triad mis-judges banks
(FCF meaningless) and regulated utilities (FCF structurally negative).
Use references/sector-step2-modules.md; the deterministic dispatch is
scripts/payout_safety.py.
adjusted_eps_source = UNAVAILABLE ⇒ cap HOLD-REVIEW (fail-safe;
never a silent PASS).HOLD-REVIEW (FITB/Comerica golden case).When trend is mixed but not broken, classify as HOLD-REVIEW instead of
hard reject.
Use references/valuation-and-one-off-checks.md and apply
sector-specific valuation logic:
PER x PBR can remain primary.P/FFO or P/AFFO instead of plain P/E.P/E, P/FCF, and historical range.Always report which valuation method was used for each ticker.
Reject or downgrade names where recent profits rely on one-time effects:
Record one-line evidence for each FAIL to keep auditability.
Step 4 is backward-looking; Step 4b catches pending/recent structural
events (the MKC-Unilever miss, D3). For each surviving candidate, run a
WebSearch + issuer-IR/SEC check using the source hierarchy: issuer IR
→ SEC filing (8-K/10-Q/10-K/proxy/S-4) → exchange/company deck →
reputable wire → finance portals (secondary only). Record findings into a
curated events JSON and pass it via build_entry_signals.py --events-json.
HOLD-REVIEW
(tx > 10% mcap, share issuance > 10–20%, leverage +0.5x EBITDA,
control/listing/HQ change, merger-of-equals / RMT / spin-off / large
asset sale, dividend/rating/leverage-policy change, sector-specific
materiality, or rolling-24m cumulative M&A > 15% mcap). Minor bolt-ons
are a CAUTION note only.FAILED-DEGRADED / SKIPPED / NO_EVENT_FOUND
on a Step-5 TRIGGERED name ⇒ HOLD-REVIEW + T1 BLOCKED. WebSearch
unavailable (web app / offline) is treated the same — never a silent
skip. CLEAN_CONFIRMED (primary source checked) is stronger than
NO_EVENT_FOUND (search only).Set entry triggers mechanically:
+0.5pp).P/E, P/FFO, or P/FCF).Execution pattern:
40% -> 30% -> 30%.pre_order_blockers[] (from WS-1/2/3 — variable/cut/suspension,
adjusted-EPS-unavailable, GAAP/Adj divergence, bank credit, utility
FFO/debt, event-scan failed/skipped, stale dividend, …) OR
t1_blocked is true, the first tranche is blocked or downsized to a
≤20% tracking tranche — not 40%.SECTOR_CLUSTER_WARN_COUNT same-sector
names pass (e.g. many small banks share one macro beta), emit a
portfolio-level CLUSTER-RISK warning.Always produce:
CLEAN-PASS,
PASS-CAUTION, CONDITIONAL-PASS, HOLD-REVIEW, STEP1-RECHECK,
FAIL (synthesized by verdict.py from Step 1 + Step 2 + Step 4b +
blockers). Include evidence per row.references/stock-note-template.md) with the
per-ticker provenance block (price/dividend/payout/event sources,
unresolved_blockers, evidence_refs[]).Return and/or generate:
references/stock-note-template.md.skills/kanchi-dividend-sop/scripts/build_sop_plan.py in reports/.skills/kanchi-dividend-sop/scripts/build_entry_signals.py in reports/.Use this minimum rhythm:
Run this skill first, then hand off outputs:
kanchi-dividend-review-monitor for daily/weekly/quarterly anomaly detection.kanchi-dividend-us-tax-accounting for account-location and tax classification planning.STEP1-RECHECK, not FAIL.HOLD-REVIEW + T1
blocked. Never silently skip Step 4b.adjusted_eps/data missing ⇒ fail-safe
HOLD-REVIEW, never silent PASS.scripts/thresholds.py: single source of truth for all SOP
thresholds + SCHEMA_VERSION (downstream schema-evolution guard).scripts/dividend_basis.py: WS-1 regular/special/variable/freeze/cut +
Data Freshness Gate engine (pure, offline).scripts/payout_safety.py: WS-2 sector-aware GAAP/Adjusted/FCF payout
triad + completed-merger linkage.scripts/event_scanner.py: WS-3 isolated forward/recent corporate-action
scanner + materiality gate + pessimistic cap.scripts/verdict.py: WS-5 actionable-tier synthesis + run_context +
evidence_ref helpers.scripts/build_entry_signals.py: orchestrator (Step 5 targets + WS-1/2/3/5
integration). Flags: --yield-floor, --events-json, --profile,
--safety-bias, --universe-source.scripts/build_sop_plan.py: deterministic SOP plan scaffold generator.scripts/tests/test_golden_p0.py: P0 merge gate — end-to-end frozen
verdicts for CALM/ORI/CMCSA/MKC/CFR/cut (run via scripts/run_all_tests.sh).references/default-thresholds.md: human-readable threshold mirror.references/sector-step2-modules.md: Step 2 safety indicators by sector.references/valuation-and-one-off-checks.md: Step 3 valuation + Step 4 one-off.references/stock-note-template.md: one-page memo + provenance block.Frequently asked questions
Convert Kanchi-style dividend investing into a repeatable US-stock operating procedure. Covers screening, deep dive, entry planning, and post-purchase monitoring cadence.
The source record exposes this install command: npx skills add https://github.com/tradermonty/claude-trading-skills --skill "skills/kanchi-dividend-sop". Inspect the command and pinned source before running it.
Static rules flagged exec-script in the source; the page lists the matching lines and excerpts.
Alternatives
garrytan/gbrain
End-to-end discipline for turning any large data source (audio libraries, email takeouts, document corpora, chat exports, API dumps) into brain pages at scale. The lifecycle spine: SCHEMA → ACCESS → TRIAL → EVALUATE → IMPROVE → CODIFY → TEST → SKILLIFY → BULK → MONITOR. State is tracked in a durable JSON manifest (see MANIFEST-PATTERN.md) so any crash, session boundary, or subagent fan-out resumes from ground truth instead of memory.
alirezarezvani/claude-skills
App Store Optimization (ASO) toolkit for researching keywords, analyzing competitor rankings, generating metadata suggestions, and improving app visibility on Apple App Store and Google Play Store. Use when the user asks about ASO, app store rankings, app metadata, app titles and descriptions, app store listings, app visibility, or mobile app marketing on iOS or Android. Supports keyword research and scoring, competitor keyword analysis, metadata optimization, A/B test planning, launch checklist
dotnet/skills
Migrates .NET test projects from VSTest to Microsoft.Testing.Platform (MTP). Use when user asks to "migrate to MTP", "switch from VSTest", "enable Microsoft.Testing.Platform", "use MTP runner", set OutputType=Exe only for test projects in Directory.Build.props, or mentions EnableMSTestRunner, EnableNUnitRunner, or UseMicrosoftTestingPlatformRunner. USE FOR: MTP behavioral differences vs VSTest (exit code 8, zero tests discovered, --ignore-exit-code, TESTINGPLATFORM_EXITCODE_IGNORE); centralizing
oaustegard/claude-skills
Generate hierarchical _FEATURES.md files that describe what a codebase DOES from a user/consumer perspective, anchored to source symbols via tree-sitting. Supports large complex codebases through feature-driven decomposition into sub-feature files. Uses a multi-pass synthesis: orientation → detail → overview rewrite. Use when someone says "what does this do", "document features", "feature inventory", "_FEATURES.md", or needs to understand a codebase's purpose before modifying it. Complements tre