halal-news-watch

halal-news-watch is a skill for Claude Code from goww7/halalterminal-claude-skills. It costs 56 tokens per session (717 once invoked), scanned A, original, Apache-2.0.

A news and filing monitor for changes that could affect a stock’s Shariah-compliance status. SEC filings are official reports that US-listed companies submit to regulators, and the monitor checks them alongside relevant news.

In plain words
What is it for?
It helps monitor holdings for compliance-related news, rank important changes, check whether a screening is outdated, and inspect SEC filing calendars when more context is needed.
Why use it?
A company’s compliance status can change after new debt, acquisitions, business lines, spin-offs, or dividend changes. This helps identify material updates since the last screening.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the halalterminal-claude-skills plugin — 9 skills, 2 commands, 1 agent, 1 MCP server shipped together

Good fit It helps monitor holdings for compliance-related news, rank important changes, check whether a screening is outdated, and inspect SEC filing calendars when more context is needed.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/goww7/halalterminal-claude-skills/halal-news-watch
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 goww7/halalterminal-claude-skills --skill halal-news-watch
Clone the repo
git clone --depth 1 https://github.com/goww7/halalterminal-claude-skills

Made for: Claude Code.

Or install halalterminal-claude-skills, the plugin that ships this one along with the rest of its 9 skills, 2 commands, 1 agent, 1 MCP server.

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 halal-news-watch

README.md
[![agentmods](https://agentmods.dev/badge/skills/goww7/halalterminal-claude-skills/halal-news-watch/github.svg)](https://agentmods.dev/skills/goww7/halalterminal-claude-skills/halal-news-watch)
Your own site
<a href="https://agentmods.dev/skills/goww7/halalterminal-claude-skills/halal-news-watch"><img src="https://agentmods.dev/badge/skills/goww7/halalterminal-claude-skills/halal-news-watch/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 halal-news-watch

Your own site · 80×15
<a href="https://agentmods.dev/skills/goww7/halalterminal-claude-skills/halal-news-watch"><img src="https://agentmods.dev/badge/skills/goww7/halalterminal-claude-skills/halal-news-watch.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 56 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 717 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.
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.00056 $0.00717
Opus 5 $0.00028 $0.00358
Sonnet 5 $0.00011 $0.00143
Haiku 4.5 $0.00006 $0.00072

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

Security

Grade A, and why

halal-news-watch 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.

skills/halal-news-watch/SKILL.md · 47 lines

How it starts

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

halal-news-watch

When fired

  • "Any news on AAPL's compliance?"
  • "Filings affecting my portfolio's compliance"
  • "What changed for TSLA recently?"

Process

  1. Load references/disclaimer.md.
  2. For each symbol the user asks about (or each holding in their portfolio if they say "my holdings"):
    • Call get_news with symbol: <SYM>, limit: 20, compliance_relevance: "high" — this returns only articles tagged debt_issuance / m_and_a / dividend_change / equity_action / distress. The tagger is server-side; you do not need to keyword-match yourself.
    • If compliance_relevance: "high" returns 0 hits, retry with compliance_relevance: "medium" to surface softer signals (refinancings, share splits, governance changes).
    • Call /api/insights/{SYM}/staleness — this returns is_stale: true whenever a material 8-K (item codes 1.01, 2.01, 2.03, 5.02, 8.01) was filed after the symbol's last screening, with the filing URL inline. ~1 token.
    • Optionally call get_sec_filings for the raw 10-K/10-Q calendar if the user wants context.
  3. Rank items by compliance_categories (debt_issuance + m_and_a outrank dividend_change + equity_action) then by recency.
  4. Do NOT issue a new verdict — just flag "this is worth a re-screen; run halal-verdict on to see current status".

~N tokens per run

1–2 tokens per symbol per call × 2 calls = ~4 tokens per symbol. For 10 holdings, ~40 tokens.

Output structure

  • Per symbol (if material news found): <SYM> — <headline> (<date>, <source>). Tagged: <compliance_categories>. Why it matters: <one-line compliance-impact explanation>.
  • If staleness.is_stale: true, prepend a "🚨 Re-screen recommended" line with the filing URL.
  • Summary: total items flagged grouped by category, plus how many holdings have stale screenings.
  • No verdict header, no methodology matrix (this isn't a verdict).
  • Non-fatwa disclaimer not required (no verdict emitted), but branding footer is.

Audience tuning

  • Retail — plain-English explanation of why each item matters.
  • Advisor — show filing type codes (8-K, 10-K, S-1), deal sizes in dollars.
  • Scholar — focus on items that would push a methodology over its threshold (e.g., "this $5B debt raise brings debt/market cap from 28% to 34% — this would push AAOIFI and MSCI over their limits").

Read the full file on GitHub · 47 lines

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 · 47 lines · 56 tokens per session scan A 423992da2eed

Subscribe to this mod's changes

halal-news-watch is a skill published in the GitHub repository goww7/halalterminal-claude-skills (5 stars, last pushed 20d ago), licensed Apache-2.0. It adds 56 tokens to every session and 717 once invoked, about $0.0003 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-31.

Related

Other skills, from other repositories

comptable

Comptabilité, fiscalité et facturation pour entreprises françaises. Gère écritures PCG, déclarations TVA, IS/IR, clôture annuelle, liasse fiscale (2033/2065), FEC, états financiers, et chaîne facturation (mentions obligatoires, numérotation, Factur-X/UBL/CII, plateformes agréées PDP/PA, e-reporting, réforme 2026…

romainsimon/paperasse · 143 tokens

fiscaliste

Fiscaliste IA pour la fiscalité personnelle des particuliers français : optimisation et déclaration de l'impôt sur le revenu, IFI, revenus du capital, revenus fonciers, equity salarial, crypto-actifs et PER. Couvre le calcul de l'IR (barème, quotient familial, décote, PAS, CEHR, revenus exceptionnels), la déclaration…

romainsimon/paperasse · 302 tokens

syndic

Gère un parc de copropriétés en France avec vue portfolio consolidée. Couvre administration, comptabilité (décret 2005, plan comptable copro, 5 annexes), assemblées générales (convocation, PV, notification), appels de fonds, travaux, fournisseurs, recouvrement d'impayés et transition de syndic. Maîtrise les majorités…

romainsimon/paperasse · 194 tokens

financial-statement-analysis

Reads a set of financial statements and establishes what changed and why — fluctuation analysis against prior period and against budget, profitability, liquidity, solvency and efficiency ratios, benchmarking, and the non-GAAP measures presented alongside them. Use this to interpret results, review a counterparty's or…

cbrock84/headcount · 93 tokens

daily-budget-check

Run a daily spend check-in against a daily budget on the Agent Monitor dashboard — today's spend vs the daily target, pace through the day, and the projected overage if the current pace holds. Uses /api/pricing/cost and /api/sessions (grouped by startedat = today). Use for a quick daily spend check-in or a…

hoangsonww/Claude-Code-Agent-Monitor · 81 tokens

ib-collar

Generate tactical collar strategy reports for protecting PMCC positions through earnings or high-risk events. Requires TWS or IB Gateway running locally.

staskh/trading_skills · 30 tokens