# AI-Agent News & Advisory Portal > AI-agent-first content hub: news articles, CVE/security advisories, and official government documents from Japanese agencies, the U.S. Federal Register, and the EU (EUR-Lex and the European Commission), ingested by crawlers and enriched asynchronously (LLM summary, machine translation to English, knowledge-graph lookup), served metadata-first over MCP/REST. Also includes an Agent-Readiness directory scoring other websites' llms.txt / MCP / API-catalog exposure. Article bodies are exposed per each item's redistribution license (first-party in full; third-party link-only — link + graph metadata only). ## About News portal for AI agents. Crawlers ingest articles; an asynchronous worker enriches them (LLM summary, machine translation to English, knowledge-graph lookup). Articles are served metadata-first (title, summary, entities, related). Whether the body is exposed depends on each article's redistribution license: first-party content is served in full, while third-party sources are link-only — link plus graph metadata (entities / related), pointing back to the origin. - Update frequency: crawled 3x/day. Summaries, translations and graph entities follow asynchronously, so a freshly ingested article may not yet be enriched. - Translation policy: for articles whose license exposes a summary, the source-language summary is machine-translated to English (ja / zh-Hans / zh-Hant → en). `summary_en` is the primary English pivot; the original summary is retained alongside it. Article titles and bodies stay in their original language. Link-only articles expose no summary or translation at all — only the link and graph metadata. - Rights: content is offered for AI use under the signals declared in https://portal.chinng-lab-srv.dev/robots.txt (rights reserved per EU Directive 2019/790 Art. 4). Per-article reuse is scoped by `license_note`: full (body included) / summary-only / link-only (link + graph metadata only). Third-party sources default to link-only. ## API - MCP (recommended): `https://portal.chinng-lab-srv.dev/mcp` — streamable-http. Eight tools: `portal_list` returns metadata only (no body, token-light); `portal_search` does the same but keyword-matches title / summary_en / entities; `portal_get` returns a full article with its body gated by `license_note`; `portal_popular` returns the most retrieved pages; `portal_changes` returns only republished content-hash changes; `portal_list_government` lists official government documents with provenance fields; `portal_list_agent_surfaces` and `portal_get_agent_surface` browse the Agent-Readiness directory (see below). - Keyword search (REST, no auth): `GET https://portal.chinng-lab-srv.dev/api/search?q=` — matches title / summary_en / entities (space-separated words are ANDed). Optional `category` / `status` / `lang` / `limit` / `offset`. Returns JSON `{total, count, limit, offset, query, items[]}` (metadata only, no body). This is the public read surface; the ingest `/v1/*` API is not exposed here. - Government documents (REST, no auth): `GET https://portal.chinng-lab-srv.dev/api/government?country=jp` lists cross-country official records (countries: `jp`, `us`, `eu`); filter by `country`, `source`, `document_type`, `limit`, and `offset`, and use `/api/government/items/` for one record. `GET https://portal.chinng-lab-srv.dev/api/government/federal-register` remains the Federal Register-specific view. - Popular pages (REST, no auth): `GET https://portal.chinng-lab-srv.dev/api/popular?window=24h&limit=10` — returns the most retrieved portal pages. `window` accepts rolling windows such as `24h`, `7d`, `30d`, or `90d`; optional `category` is a category prefix such as `news` or `security`; `limit` defaults to 10. The same ranking is available through MCP as `portal_popular`. - Content changes (REST, no auth): `GET https://portal.chinng-lab-srv.dev/api/changes` returns only existing articles whose server-computed `content_hash` changed and that were republished. Continue with `next_cursor`; initial creation and enrichment-only updates are excluded. Markdown view: `https://portal.chinng-lab-srv.dev/changes.md`; MCP: `portal_changes`. - Citation Pack: `https://portal.chinng-lab-srv.dev/citations/.json` or `GET https://portal.chinng-lab-srv.dev/api/items//citation` describes attribution, license, available fields, content hash and reuse policy. - Stable monitoring pages: `https://portal.chinng-lab-srv.dev/topics/.md` and `https://portal.chinng-lab-srv.dev/entities/.md` are generated only after a minimum number of normalized published matches. - Three content families: news articles (`news/`), CVE / vulnerability advisories (`security/`), and official government documents (`government/`). Filter `portal_list` / `portal_search` by category, or use `portal_list_government` for provenance-aware government listing. Sitemaps are split into `sitemap_news.xml`, `sitemap_cve.xml`, and `sitemap_government.xml`. - Agent-Readiness directory (REST, no auth): `GET https://portal.chinng-lab-srv.dev/api/surfaces` rates other websites on how well they expose AI-agent surfaces (llms.txt / api-catalog / MCP server card / agent-skills / OAuth / Web Bot Auth / ...). Each domain is scored 0-100 across five categories (Discoverability / Content / Bot Access Control / API-Auth-MCP-Skill / Commerce) mapping to Level 0-3. Filter by `level` / `min_score` / `domain` / `discovered_via` and `sort=score|recent`; `GET https://portal.chinng-lab-srv.dev/api/surfaces/` returns one site's full breakdown. Human-readable index at `https://portal.chinng-lab-srv.dev/directory.md`, per-site cards at `https://portal.chinng-lab-srv.dev/sites/.md` (text/markdown), and a dedicated `https://portal.chinng-lab-srv.dev/sitemap_sites.xml`. Same data via MCP (`portal_list_agent_surfaces` / `portal_get_agent_surface`). - MCP Server Card: `https://portal.chinng-lab-srv.dev/.well-known/mcp/server-card.json` - AI catalog (Agentic Resource Discovery): `https://portal.chinng-lab-srv.dev/.well-known/ai-catalog.json` - API catalog (RFC 9727 linkset): `https://portal.chinng-lab-srv.dev/.well-known/api-catalog` - Agent Skills index: `https://portal.chinng-lab-srv.dev/.well-known/agent-skills/index.json` - Ingest API `POST /v1/items` and `/v1/items:batch` (Bearer auth; LAN-only in this phase) accept `{url, title, summary?, summary_source?, content?, published_at?, source, category_raw?, region?, lang?, tags[]}`. The server computes `id` / `url_hash` / `content_hash`; a duplicate `url_hash` returns 200 with `created:false` (idempotent). ## How to consume 1. Fetch `https://portal.chinng-lab-srv.dev/llms.txt` or the MCP Server Card to discover endpoints. 2. Call `portal_list` (MCP) and page through metadata, filtering by category / status / source / lang / since / until / q — or `portal_search` (MCP) / `GET https://portal.chinng-lab-srv.dev/api/search?q=` (REST) to keyword-match title / summary_en / entities. Read `summary_en` and `entities`, then pick only the ids you actually need — do not bulk-fetch bodies. 3. Call `portal_get` on the chosen ids. The returned body honors each article's `license_note`. 3a. For government monitoring, call `portal_list_government(country="jp")` (also `"us"` / `"eu"`) or `GET https://portal.chinng-lab-srv.dev/api/government?country=eu`, then call `portal_get` only for selected ids. The Federal Register-specific REST view remains `https://portal.chinng-lab-srv.dev/api/government/federal-register`. 4. To discover what agents are retrieving most, call `portal_popular` (MCP) or `GET https://portal.chinng-lab-srv.dev/api/popular?window=24h&limit=10` (REST), optionally filtering by a `category` prefix. Use the returned URLs or ids to fetch only the pages you need. 5. For incremental monitoring, call `portal_changes` or `GET https://portal.chinng-lab-srv.dev/api/changes`, process the token-light page, then persist `next_cursor`. Consult each selected item's Citation Pack at `https://portal.chinng-lab-srv.dev/citations/.json` before quoting or reusing it. 6. Plain HTTP alternative: `https://portal.chinng-lab-srv.dev/sitemap.xml` is a sitemap index pointing to `https://portal.chinng-lab-srv.dev/sitemap_news.xml` (news/*), `https://portal.chinng-lab-srv.dev/sitemap_cve.xml` (security/* CVE advisories), `https://portal.chinng-lab-srv.dev/sitemap_government.xml` (government/*), and `https://portal.chinng-lab-srv.dev/sitemap_sites.xml` (the Agent-Readiness directory) so they never mix; each article is Markdown at its listed canonical URL (`text/markdown`), and each category feed is at `https://portal.chinng-lab-srv.dev/feeds/.md`. 7. Agent-Readiness directory: call `portal_list_agent_surfaces` (MCP) or `GET https://portal.chinng-lab-srv.dev/api/surfaces` (REST) to see how agent-ready other sites are, then drill into one with `portal_get_agent_surface` / `GET https://portal.chinng-lab-srv.dev/api/surfaces/`. Plain HTTP: the index is `https://portal.chinng-lab-srv.dev/directory.md` and each site card is `https://portal.chinng-lab-srv.dev/sites/.md`. ## government/eu - Feed: https://portal.chinng-lab-srv.dev/feeds/government/eu.md - [Statement by President von der Leyen, Executive Vice-President Mînzatu, and Commissioner Lahbib ahead of European Roma Holocaust Memorial Day](https://portal.chinng-lab-srv.dev/government/eu/2026/07/31/government-20260731-e89b18.md) - [Proposal for a COUNCIL IMPLEMENTING DECISION amending the Implementing Decision of 28 July 2021 on the approval of the assessment of the recovery and resilience plan for Cyprus](https://portal.chinng-lab-srv.dev/government/eu/2026/07/31/government-20260731-8bbba1.md) - [Proposal for a COUNCIL IMPLEMENTING DECISION amending the Implementing Decision of 13 July 2021 on the approval of the assessment of the recovery and resilience plan for Belgium](https://portal.chinng-lab-srv.dev/government/eu/2026/07/31/government-20260731-d8773b.md) - [Proposal for a COUNCIL IMPLEMENTING DECISION amending the Implementing Decision of 13 July 2021 on the approval of the assessment of the recovery and resilience plan for Latvia](https://portal.chinng-lab-srv.dev/government/eu/2026/07/31/government-20260731-d5884a.md) - [Judgment of the Court (Fifth Chamber) of 15 January 2026.#XH v European Commission.#Appeal – Civil service – European Anti-Fraud Office (OLAF) – Allegations of psychological harassment during periods of sick leave – Rejection of the request for assistance and of the claim for compensation – Opening of an invalidity procedure – Action for annulment and for damages – Admissibility – Acts open to challenge – Obligation on the part of the General Court of the European Union to state reasons – Contradictory reasoning – Distortion of the facts and evidence.#Case C-75/24 P.](https://portal.chinng-lab-srv.dev/government/eu/2026/07/31/government-20260731-c1bb08.md) - [Commission starts enforcing AI Act rules and new transparency requirements on 2 August](https://portal.chinng-lab-srv.dev/government/eu/2026/07/31/government-20260731-dd59c4.md) - [Proposal for a REGULATION OF THE EUROPEAN PARLIAMENT AND OF THE COUNCIL on the Farm Sustainability Data Network (codification)](https://portal.chinng-lab-srv.dev/government/eu/2026/07/31/government-20260731-11321d.md) - [Proposal for a COUNCIL DECISION on the position to be taken on behalf of the European Union in the International Organisation of Vine and Wine (OIV)](https://portal.chinng-lab-srv.dev/government/eu/2026/07/31/government-20260731-7f980d.md) - [OJ:C_202604233: Publication of the communication of an approved standard amendment to a product specification of a geographical indication in accordance with Article 5(4) of Commission Delegated Regulation (EU) 2025/27](https://portal.chinng-lab-srv.dev/government/eu/2026/07/30/government-20260730-00f67e.md) - [OJ:C_202604239: Publication of the communication of an approved standard amendment to a product specification of a geographical indication in accordance with Article 5(4) of Commission Delegated Regulation (EU) 2025/27](https://portal.chinng-lab-srv.dev/government/eu/2026/07/30/government-20260730-82cdfa.md) - [OJ:C_202603611: Statement of revenue and expenditure for the 2026 financial year – European Food Safety Authority (EFSA) – amending budget No 3](https://portal.chinng-lab-srv.dev/government/eu/2026/07/30/government-20260730-f97f52.md) - [OJ:C_202604234: Authorisation for State aid pursuant to Articles 107 and 108 of the Treaty on the Functioning of the European Union – Cases where the Commission raises no objections – SA.123705](https://portal.chinng-lab-srv.dev/government/eu/2026/07/30/government-20260730-1d035d.md) - [OJ:C_202603709: Euro exchange rates – 30 July 2026](https://portal.chinng-lab-srv.dev/government/eu/2026/07/30/government-20260730-db9a96.md) - [OJ:C_202604087: Notice of initiation of a partial interim review of the anti-subsidy measures applicable to imports of biodiesel originating in the United States of America](https://portal.chinng-lab-srv.dev/government/eu/2026/07/30/government-20260730-cd1ad7.md) - [OJ:C_202604230: Prior notification of a concentration (Case M.12504 – MITSUBISHI HC CAPITAL / BROOKFIELD / MHBF RENEWABLES) – Candidate case for simplified procedure](https://portal.chinng-lab-srv.dev/government/eu/2026/07/30/government-20260730-275d64.md) - [OJ:C_202604247: Commission notice pursuant to Article 17(5) of Regulation (EC) No 1008/2008 of the European Parliament and of the Council on common rules for the operation of air services in the Community – Invitation to tender in respect of the operation of scheduled air services in accordance with public service obligations](https://portal.chinng-lab-srv.dev/government/eu/2026/07/30/government-20260730-30dfbc.md) - [OJ:C_202604240: Non-opposition to a notified concentration (Case M.12486 – SAICA / THIMM)](https://portal.chinng-lab-srv.dev/government/eu/2026/07/30/government-20260730-cf3c24.md) - [OJ:C_202604227: Notice of initiation of an expiry review of the anti-dumping measures applicable to imports of biodiesel originating in the United States of America](https://portal.chinng-lab-srv.dev/government/eu/2026/07/30/government-20260730-15b643.md) - [OJ:C_202604236: Notice for the attention of the persons and entities subject to the restrictive measures provided for in Council Decision (CFSP) 2020/1999, as amended by Council Decision (CFSP) 2026/1896 and in Council Regulation (EU) 2020/1998, as implemented by Council Implementing Regulation (EU) 2026/1895 concerning restrictive measures against serious human rights violations and abuses](https://portal.chinng-lab-srv.dev/government/eu/2026/07/30/government-20260730-f079a2.md) - [OJ:C_202604202: Authorisation for State aid pursuant to Articles 107 and 108 of the Treaty on the Functioning of the European Union – Cases where the Commission raises no objections – SA.123882](https://portal.chinng-lab-srv.dev/government/eu/2026/07/30/government-20260730-a553c4.md) - (+921 more; see https://portal.chinng-lab-srv.dev/sitemap.xml) ## government/jp - Feed: https://portal.chinng-lab-srv.dev/feeds/government/jp.md - [令和8年熊本地震に関する被害状況等について(第21報)](https://portal.chinng-lab-srv.dev/government/jp/2026/08/01/government-20260801-b2b289.md) - [令和8年熊本地震に関する被害状況等について(第22報)](https://portal.chinng-lab-srv.dev/government/jp/2026/08/01/government-20260801-226ffa.md) - [令和8年熊本地震に関する被害状況等について(第23報)](https://portal.chinng-lab-srv.dev/government/jp/2026/08/01/government-20260801-c0ecec.md) - [令和8年熊本地震非常災害対策本部会議-令和8年8月1日](https://portal.chinng-lab-srv.dev/government/jp/2026/08/01/government-20260801-28db1b.md) - [総務省参与(総務大臣科学技術顧問)の発令](https://portal.chinng-lab-srv.dev/government/jp/2026/07/31/government-20260731-9c277e.md) - [令和8年熊本地震に関する被害状況等について(第18報)](https://portal.chinng-lab-srv.dev/government/jp/2026/07/31/government-20260731-eaa018.md) - [令和8年8月1日付 総務省人事](https://portal.chinng-lab-srv.dev/government/jp/2026/07/31/government-20260731-355205.md) - [令和8年熊本地震に関する被害状況等について(第19報)](https://portal.chinng-lab-srv.dev/government/jp/2026/07/31/government-20260731-bd1825.md) - [令和8年熊本地震に関する被害状況等について(第20報)](https://portal.chinng-lab-srv.dev/government/jp/2026/07/31/government-20260731-027d2c.md) - [「預金取扱等金融機関モニタリング・分析レポート」について公表しました。](https://portal.chinng-lab-srv.dev/government/jp/2026/07/31/government-20260731-bd463e.md) - [医療DXに関するダッシュボードを更新しました](https://portal.chinng-lab-srv.dev/government/jp/2026/07/31/government-20260731-0f27de.md) - [原子力関係閣僚会議-令和8年7月31日](https://portal.chinng-lab-srv.dev/government/jp/2026/07/31/government-20260731-cd970f.md) - [FSA Analytical Notesー金融庁分析事例集ー(2026.7)vol.2<主要行等における海外債務者への融資状況の分析>、<企業デフォルト率推計モデル構築に向けた分析>および<預金動向の実態把握及び預金残高の変動要因に関する定量的分析の試行>について公表しました。](https://portal.chinng-lab-srv.dev/government/jp/2026/07/31/government-20260731-acb405.md) - [令和8年熊本地震非常災害対策本部会議-令和8年7月31日](https://portal.chinng-lab-srv.dev/government/jp/2026/07/31/government-20260731-94becc.md) - [「経営者保証に関するガイドライン」の活用実績等について(個別金融機関等の実績及び取組方針の公表状況)を更新しました。](https://portal.chinng-lab-srv.dev/government/jp/2026/07/31/government-20260731-e0f366.md) - [外国人の受入れ・共生に関する金融関連施策について更新しました。](https://portal.chinng-lab-srv.dev/government/jp/2026/07/31/government-20260731-ee1045.md) - [その他,金融機関における貸付条件の変更等の状況についてを更新しました。](https://portal.chinng-lab-srv.dev/government/jp/2026/07/31/government-20260731-f46766.md) - [その他,「昭和100年」関連施策 特設ページを更新しました。](https://portal.chinng-lab-srv.dev/government/jp/2026/07/31/government-20260731-8b7282.md) - [「ベンチャーキャピタルにおいて推奨・期待される事項」(改訂案)について公表しました。](https://portal.chinng-lab-srv.dev/government/jp/2026/07/31/government-20260731-06b1d3.md) - [「金融商品取引業等に関する内閣府令の一部を改正する内閣府令(案)」及び「特別金融商品取引業者及びその子法人等の保有する資産等に照らし当該特別金融商品取引業者及びその子法人等の自己資本の充実の状況が適当であるかどうかを判断するための基準を定める件の一部を改正する件(案)」に対するパブリックコメントの実施について公表しました。](https://portal.chinng-lab-srv.dev/government/jp/2026/07/31/government-20260731-b8217c.md) - (+388 more; see https://portal.chinng-lab-srv.dev/sitemap.xml) ## government/us - Feed: https://portal.chinng-lab-srv.dev/feeds/government/us.md - [Sunshine Act; Open Commission Meeting Thursday, August 6, 2026](https://portal.chinng-lab-srv.dev/government/us/2026/08/03/government-20260803-549d06.md) - [Visas: Visa Bond Program](https://portal.chinng-lab-srv.dev/government/us/2026/08/03/government-20260803-b34c1d.md) - [Auction of Flexible-Use Licenses in the Upper C-Band for Next-Generation Wireless Services Scheduled for April 27, 2027; Comment Sought on Competitive Bidding Procedures for Auction 115](https://portal.chinng-lab-srv.dev/government/us/2026/08/03/government-20260803-5dfa6f.md) - [High-Speed Train Noise Emission Standards](https://portal.chinng-lab-srv.dev/government/us/2026/08/03/government-20260803-e6df92.md) - [Rescinding Portions of Department of the Treasury Title VI Regulations To Conform More Closely With the Statutory Text and To Implement an Executive Order](https://portal.chinng-lab-srv.dev/government/us/2026/08/03/government-20260803-105947.md) - [Foreign-Trade Zone 75; Application for Subzone Expansion; Intel Corporation; Chandler, Arizona](https://portal.chinng-lab-srv.dev/government/us/2026/08/03/government-20260803-9aa26f.md) - [Tobacco Report: Notice of Request for an Extension of a Currently Approved Information Collection](https://portal.chinng-lab-srv.dev/government/us/2026/08/03/government-20260803-2e742b.md) - [Ventilation Plan Approval Criteria](https://portal.chinng-lab-srv.dev/government/us/2026/08/03/government-20260803-b41287.md) - [Notice of Intended Repatriation: Franklin County Historical Society, Ottawa, KS](https://portal.chinng-lab-srv.dev/government/us/2026/08/03/government-20260803-7440fe.md) - [Notice of Intended Repatriation: Museum of Ventura County, Ventura, CA](https://portal.chinng-lab-srv.dev/government/us/2026/08/03/government-20260803-8cd304.md) - [Notice of Intended Repatriation: Michigan State University, East Lansing, MI](https://portal.chinng-lab-srv.dev/government/us/2026/08/03/government-20260803-3df26c.md) - [Notice of Inventory Completion: U.S. Army Corps of Engineers, St. Louis District, St. Louis, MO](https://portal.chinng-lab-srv.dev/government/us/2026/08/03/government-20260803-9a18c2.md) - [Notice of Inventory Completion: Archaeological Survey of Idaho Western Repository, Idaho State Historical Society, Boise, ID](https://portal.chinng-lab-srv.dev/government/us/2026/08/03/government-20260803-12a081.md) - [Notice of Intended Repatriation: University of California, San Diego, San Diego, CA](https://portal.chinng-lab-srv.dev/government/us/2026/08/03/government-20260803-bdb3bb.md) - [Notice of Proposed Transfer or Reinterment: University of Wisconsin Oshkosh, Oshkosh, WI](https://portal.chinng-lab-srv.dev/government/us/2026/08/03/government-20260803-3e9d61.md) - [Notice of Inventory Completion: Lost City Museum, Overton, NV](https://portal.chinng-lab-srv.dev/government/us/2026/08/03/government-20260803-c2f4bb.md) - [Notice of Inventory Completion: University of Kansas, Lawrence, KS, and University of Tennessee, Department of Anthropology, Knoxville, TN](https://portal.chinng-lab-srv.dev/government/us/2026/08/03/government-20260803-e1a239.md) - [Notice of Intended Repatriation: California State University, Sacramento, Sacramento, CA](https://portal.chinng-lab-srv.dev/government/us/2026/08/03/government-20260803-319535.md) - [Notice of Intended Repatriation: California State University, Sacramento, Sacramento, CA](https://portal.chinng-lab-srv.dev/government/us/2026/08/03/government-20260803-f918ca.md) - [Notice of Intended Repatriation: Denver Art Museum, Denver, CO](https://portal.chinng-lab-srv.dev/government/us/2026/08/03/government-20260803-7b44bf.md) - (+479 more; see https://portal.chinng-lab-srv.dev/sitemap.xml) ## news/business - Feed: https://portal.chinng-lab-srv.dev/feeds/news/business.md - [https://www.sakura.ad.jp/corporate/information/newsreleases/2024/07/01/1968216202/](https://portal.chinng-lab-srv.dev/news/business/news-20260802-b0a5d1.md) - [https://www.sakura.ad.jp/corporate/information/newsreleases/2026/03/27/1968224087/](https://portal.chinng-lab-srv.dev/news/business/news-20260802-df5be0.md) - [地震で商品落下 コストコの回答](https://portal.chinng-lab-srv.dev/news/business/news-20260802-efd285.md) - [「見せる延長コード」開発の情熱](https://portal.chinng-lab-srv.dev/news/business/news-20260802-52c3ec.md) - [日本経済大学サッカー部 2026 チーム紹介【九州大学サッカーリーグ】](https://portal.chinng-lab-srv.dev/news/business/news-20260802-3170d0.md) - [セブンがPayPayと「巨大経済圏」を構築へ!異例の出資受け入れの陰 ...](https://portal.chinng-lab-srv.dev/news/business/news-20260802-6a11ad.md) - [AI活用したサイバー攻撃、中国勢の新モデルが脅威に 上原哲太郎氏](https://portal.chinng-lab-srv.dev/news/business/news-20260802-c4df01.md) - [日米が為替協調介入 15年ぶり、円安是正で](https://portal.chinng-lab-srv.dev/news/business/news-20260802-19a9ef.md) - [AI供給網の整備進む 今年度、日経調査](https://portal.chinng-lab-srv.dev/news/business/news-20260802-a0884b.md) - [日本円沈没の危機 「4%に利上げを」アベノミクスの師が警鐘](https://portal.chinng-lab-srv.dev/news/business/news-20260802-ae47cf.md) - [出産費用を無償に、改正法成立 厚労省が全国一律価格を設定へ(日本経済新聞)](https://portal.chinng-lab-srv.dev/news/business/news-20260802-8f769d.md) - [会計等中心にAI代替が進む~令和8年度年次経済財政報告](https://portal.chinng-lab-srv.dev/news/business/news-20260802-88b31e.md) - [「ありがたい制度」赤ちゃん誕生で30万円給付!新潟・五泉市が ...](https://portal.chinng-lab-srv.dev/news/business/news-20260802-508a53.md) - [爆発前、従業員に館内戻るよう指示 イオンモール熊本のテナント会社](https://portal.chinng-lab-srv.dev/news/business/news-20260802-8ee2d7.md) - [ジェリーシューズ なぜ大人が支持](https://portal.chinng-lab-srv.dev/news/business/news-20260802-b73668.md) - [帝国データバンク プレスリリース(PRTIMES)](https://portal.chinng-lab-srv.dev/news/business/news-20260802-9bfa44.md) - [マイナビニュース「2026年8月の飲食料品値上げは2311品目、前年比8割増」](https://portal.chinng-lab-srv.dev/news/business/news-20260802-3655d0.md) - [帝国データバンク「食品主要195社 価格改定動向調査 2026年8月」](https://portal.chinng-lab-srv.dev/news/business/news-20260802-666a21.md) - [ジェリーシューズ 支持集める理由](https://portal.chinng-lab-srv.dev/news/business/news-20260802-b12267.md) - [設備投資額最高35兆円、AI供給網整備の裾野広がる 26年度日経調査](https://portal.chinng-lab-srv.dev/news/business/news-20260802-9420ce.md) - (+1250 more; see https://portal.chinng-lab-srv.dev/sitemap.xml) ## news/disaster - Feed: https://portal.chinng-lab-srv.dev/feeds/news/disaster.md - [義援金と支援金の違いとは?災害時に知っておきたい寄付の正しい使い分け](https://portal.chinng-lab-srv.dev/news/disaster/news-20260802-40a9e5.md) - [2026年 気象庁の梅雨明け発表を読み解く — 背景と暮らしへの影響](https://portal.chinng-lab-srv.dev/news/disaster/news-20260720-c868fe.md) - [防災庁創設と日本の災害対応体制の大転換〜福祉施設の水害対策15%の衝撃と今後の行方](https://portal.chinng-lab-srv.dev/news/disaster/news-20260719-70338f.md) - [防空の基礎知識:日本の防空体制と市民が知るべき備え](https://portal.chinng-lab-srv.dev/news/disaster/news-20260714-4b76d4.md) - [セブンで買える「一生モノ」の安心。Ankerが挑んだリン酸鉄モバイルバッテリーという革命](https://portal.chinng-lab-srv.dev/news/disaster/news-20260711-4eebdf.md) - [暴風警報沖縄 — 7月の台風シーズンを前に備える完全ガイド](https://portal.chinng-lab-srv.dev/news/disaster/news-20260710-bb0c1b.md) - [2026年夏の猛暑展望――「ダブル高気圧」がもたらす酷暑の脅威と熱中症対策](https://portal.chinng-lab-srv.dev/news/disaster/news-20260706-4c308d.md) ## news/domestic - Feed: https://portal.chinng-lab-srv.dev/feeds/news/domestic.md - [地震と雲を関係付ける誤情報 注意](https://portal.chinng-lab-srv.dev/news/domestic/news-20260802-bbd4c2.md) - [車2台が正面衝突 1人死亡2人重体](https://portal.chinng-lab-srv.dev/news/domestic/news-20260802-6d981e.md) - [爆発前戻るよう指示 店舗運営謝罪](https://portal.chinng-lab-srv.dev/news/domestic/news-20260802-ec8a83.md) - [航行中フェリー火災 インドネシア](https://portal.chinng-lab-srv.dev/news/domestic/news-20260802-1b7dc4.md) - [10年前も車中泊した男性「暑さが違う」「しんどい」…高齢者死亡、熱中症への警戒呼びかけも市担当者「全容把握難しい」 - yomiuri.co.jp](https://portal.chinng-lab-srv.dev/news/domestic/news-20260802-e2f71b.md) - [[長岡花火2026]100年節目の正三尺玉、圧巻のきらめき 復活の「ナイアガラ」と共演 - 新潟日報](https://portal.chinng-lab-srv.dev/news/domestic/news-20260802-965dce.md) - [揺れの中で分娩室に 1時間後出産](https://portal.chinng-lab-srv.dev/news/domestic/news-20260802-a20835.md) - [https://www.nikkei.com/article/DGXZQOUA255GI0V20C25A4000000/](https://portal.chinng-lab-srv.dev/news/domestic/news-20260802-bb220c.md) - [https://www.yomiuri.co.jp/national/20240712-OYT1T50062/](https://portal.chinng-lab-srv.dev/news/domestic/news-20260802-f40590.md) - [熊本で酷暑日予想…被災者のホテル避難受け付けへ、車中泊の女性が熱中症の疑いで死亡・初の関連死か - 読売新聞](https://portal.chinng-lab-srv.dev/news/domestic/news-20260802-90b229.md) - [【熊本震度7】イオンモール熊本爆発で従業員2人死亡 ハビタ社長が「売上金戻して」指示認め謝罪 - 西日本新聞me](https://portal.chinng-lab-srv.dev/news/domestic/news-20260802-2db00f.md) - [災害関連死の抑制に軸足 官房長官](https://portal.chinng-lab-srv.dev/news/domestic/news-20260802-2e4117.md) - [露の飲食店で女が「客への贈り物」、確認しようとしたところ爆発し3人死亡21人負傷…軍幹部狙ったテロか - yomiuri.co.jp](https://portal.chinng-lab-srv.dev/news/domestic/news-20260802-154510.md) - [ホテルへ2次避難 3日から受け付け](https://portal.chinng-lab-srv.dev/news/domestic/news-20260802-aa699a.md) - [高額療養費見直し 政府の狙いは](https://portal.chinng-lab-srv.dev/news/domestic/news-20260802-76c264.md) - [落石で女性死亡 小学生の子が目撃](https://portal.chinng-lab-srv.dev/news/domestic/news-20260802-61877c.md) - [イオンモール宇城 下敷きの客死亡](https://portal.chinng-lab-srv.dev/news/domestic/news-20260802-b44ea6.md) - [3日 熊本の複数地点40℃以上予想](https://portal.chinng-lab-srv.dev/news/domestic/news-20260802-81e937.md) - [イオン爆発 妻のスマホが形見に](https://portal.chinng-lab-srv.dev/news/domestic/news-20260802-19a681.md) - [非常に強い台風 小笠原諸島接近へ](https://portal.chinng-lab-srv.dev/news/domestic/news-20260802-9827c0.md) - (+4538 more; see https://portal.chinng-lab-srv.dev/sitemap.xml) ## news/entertainment - Feed: https://portal.chinng-lab-srv.dev/feeds/news/entertainment.md - [刃牙作者 ワンピカードの絵柄担当](https://portal.chinng-lab-srv.dev/news/entertainment/news-20260802-4bcd02.md) - [川口春奈結婚「お腹に赤ちゃん」](https://portal.chinng-lab-srv.dev/news/entertainment/news-20260802-a57a3a.md) - [てんちむ 第2子妊娠を発表](https://portal.chinng-lab-srv.dev/news/entertainment/news-20260802-c7b061.md) - [川口春奈と板倉滉 結婚&妊娠発表](https://portal.chinng-lab-srv.dev/news/entertainment/news-20260802-13b75a.md) - [VIVANT第11話 TVer最高記録更新](https://portal.chinng-lab-srv.dev/news/entertainment/news-20260802-29e06f.md) - [中村勘九郎、松本幸四郎ら演目で片岡亀蔵さんしのぶ 「亀」のセリフを随所にちりばめる](https://portal.chinng-lab-srv.dev/news/entertainment/news-20260802-6e00bf.md) - [熊本地震 芸能界で支援活動広がる](https://portal.chinng-lab-srv.dev/news/entertainment/news-20260802-9873d8.md) - [STARGLOWが初のアリーナ公演開催 GOICHI「集大成!」ADAM「アリーナの景色は格別」 ファーストアルバムの11月発売も発表](https://portal.chinng-lab-srv.dev/news/entertainment/news-20260802-3f22cb.md) - [STARGLOWが初のアリーナ公演開催 GOICHI「集大成!」ADAM「アリーナの ...](https://portal.chinng-lab-srv.dev/news/entertainment/news-20260802-4b8f76.md) - [井上芳雄 継父としての葛藤と喜び](https://portal.chinng-lab-srv.dev/news/entertainment/news-20260802-16450a.md) - [VIVANTハッカー役引き継ぎ 心境](https://portal.chinng-lab-srv.dev/news/entertainment/news-20260802-cca8c6.md) - [LE SSERAFIM・SAKURA「時には汗だくで、時には涙して」示す“私たちの色”](https://portal.chinng-lab-srv.dev/news/entertainment/news-20260802-1cab59.md) - [SixTONES・松村北斗、東野圭吾さんに思いはせ「作品は完成しました ...](https://portal.chinng-lab-srv.dev/news/entertainment/news-20260802-5a127b.md) - [電車で倒れた元SKE 脳梗塞と闘い](https://portal.chinng-lab-srv.dev/news/entertainment/news-20260802-ee3830.md) - [19歳で脳梗塞 元SKE入院中の涙](https://portal.chinng-lab-srv.dev/news/entertainment/news-20260802-a71391.md) - [SKE48が全国5か所12公演のサマーツアーを完走 8月末に卒業の池田楓 ...](https://portal.chinng-lab-srv.dev/news/entertainment/news-20260802-5e3b30.md) - [「VIVANT」“新たな別班員”の正体判明 ラスト3秒で登場した人物に ...](https://portal.chinng-lab-srv.dev/news/entertainment/news-20260802-b685dd.md) - [橋本環奈×チェ・ジョンヒョプ、1話から衝撃の事実判明! ひと夏の ...](https://portal.chinng-lab-srv.dev/news/entertainment/news-20260802-2a621c.md) - [秋元氏P男性アイドル 期待と課題](https://portal.chinng-lab-srv.dev/news/entertainment/news-20260802-83f0b5.md) - [踊る大捜査線シリーズ9作一挙放送](https://portal.chinng-lab-srv.dev/news/entertainment/news-20260802-e53ea7.md) - (+1842 more; see https://portal.chinng-lab-srv.dev/sitemap.xml) ## news/general - Feed: https://portal.chinng-lab-srv.dev/feeds/news/general.md - [Greece: fire brigade helicopters collide as wildfires spread](https://portal.chinng-lab-srv.dev/news/general/news-20260802-bb30e0.md) - [Small insects, big damage: The global ant trade is booming](https://portal.chinng-lab-srv.dev/news/general/news-20260802-62091b.md) - [Germany news: DB hampered by 'organized irresponsibility'](https://portal.chinng-lab-srv.dev/news/general/news-20260802-67bd88.md) - [[今週のリリース情報]LLMによる情報抽出を学べる実践書が登場。「具体と抽象」でシステム開発の本質をひも解く一冊やGoogle AI活用書,Studio・シェルスクリプトの入門書など新刊が発売 | Gihyo Digital Publishing … 技術評論社の電子書籍](https://portal.chinng-lab-srv.dev/news/general/news-20260802-f29ab6.md) - [Moscow restaurant blast a 'brutal terror attack,' mayor says](https://portal.chinng-lab-srv.dev/news/general/news-20260802-6caf2b.md) - [Indonesia: At least 5 dead in ferry fire](https://portal.chinng-lab-srv.dev/news/general/news-20260802-a780f0.md) - [Poland: Prime Minister Tusk defies anti-Ukrainian violence](https://portal.chinng-lab-srv.dev/news/general/news-20260802-4ea91b.md) - [Germany: Islamism and right-wing extremism — a story of mutual radicalization](https://portal.chinng-lab-srv.dev/news/general/news-20260802-f1a930.md) - [AI for Mental Health: Therapy Use Cases and Trends 2026](https://portal.chinng-lab-srv.dev/news/general/news-20260802-8d5532.md) - [AI-integrated interactive learning system for enhancing cybersecurity ...](https://portal.chinng-lab-srv.dev/news/general/news-20260802-21395c.md) - [Germany: As temperatures rise, so does climate skepticism](https://portal.chinng-lab-srv.dev/news/general/news-20260802-f40575.md) - [China: Dozens dead in Gansu flash floods](https://portal.chinng-lab-srv.dev/news/general/news-20260802-5b3045.md) - [On the front line of Europe's battle against wildfires](https://portal.chinng-lab-srv.dev/news/general/news-20260802-947638.md) - [No new Iran strikes for now amid deal hopes — Trump](https://portal.chinng-lab-srv.dev/news/general/news-20260802-cbd335.md) - [ターン制戦略RPGにエクストラクション系の要素を加えた「Hope of Elements − 魔女とドラゴンの旅」。日中をつなぐパブリッシャの役割とは[CJ2026]](https://portal.chinng-lab-srv.dev/news/general/news-20260802-a28d6a.md) - [経験者が語る、AI企業が「ドットコムバブルの失敗」を繰り返す理由(Forbes JAPAN) - Yahoo!ニュース](https://portal.chinng-lab-srv.dev/news/general/news-20260802-f88a43.md) - [US: Multiple dead in shooting at In-N-Out Burger in Idaho](https://portal.chinng-lab-srv.dev/news/general/news-20260802-933df7.md) - [出産費用無償化で本当に安心して産めるのか——改正健康保険法と「お産難民」への警鐘](https://portal.chinng-lab-srv.dev/news/general/news-20260802-0bc763.md) - [Hungary to shut sole nuclear plant for first time on Sunday](https://portal.chinng-lab-srv.dev/news/general/news-20260802-c4b6fd.md) - [なぜデータセンターは「大都市」にあるのか?急増する需要と地方分散のジレンマ(TBS CROSS DIG with Bloomberg) - Yahoo!ニュース](https://portal.chinng-lab-srv.dev/news/general/news-20260802-e323d8.md) - (+439 more; see https://portal.chinng-lab-srv.dev/sitemap.xml) ## news/health - Feed: https://portal.chinng-lab-srv.dev/feeds/news/health.md - [出産育児一時金等について(厚生労働省)](https://portal.chinng-lab-srv.dev/news/health/news-20260802-740f24.md) - [医療保険制度における出産に対する支援の強化について(厚生労働省)](https://portal.chinng-lab-srv.dev/news/health/news-20260802-9c125f.md) - [出産費用の無償化の具体化に当たっては産科医療機関の経営が担保される制度に(日本医師会)](https://portal.chinng-lab-srv.dev/news/health/news-20260802-b1361d.md) - [Frontiers | Editorial: The intersection of psychology, healthy ...](https://portal.chinng-lab-srv.dev/news/health/news-20260801-48ee33.md) - [老化の科学:最新研究と健康寿命を延ばす実践](https://portal.chinng-lab-srv.dev/news/health/news-20260801-8f8fe6.md) - [https://www.hospita.jp/clip/high-cost-medical-care-limit-2026/](https://portal.chinng-lab-srv.dev/news/health/news-20260801-9be80a.md) - [Gヘルスケア 街角ドクター訪問【テーマ:頭痛】 - tbs.co.jp](https://portal.chinng-lab-srv.dev/news/health/news-20260801-cf10e6.md) - [ClinicalTrials.gov - PRIME試験](https://portal.chinng-lab-srv.dev/news/health/news-20260731-d47e9f.md) - [Synchron公式サイト](https://portal.chinng-lab-srv.dev/news/health/news-20260731-37b089.md) - [Neuralink公式更新情報](https://portal.chinng-lab-srv.dev/news/health/news-20260731-7d325c.md) - [Precision Neuroscience FDA Clearance | MedTech Dive](https://portal.chinng-lab-srv.dev/news/health/news-20260731-81b138.md) - [China Neuracle NEO First Commercial BCI | Inside BCI](https://portal.chinng-lab-srv.dev/news/health/news-20260731-1a51ca.md) - [Paradromics FDA IDE Approval](https://portal.chinng-lab-srv.dev/news/health/news-20260731-cadcf1.md) - [BCI Clinical Trials Accelerate in 2026 | Beyond Tomorrow](https://portal.chinng-lab-srv.dev/news/health/news-20260731-681488.md) - [Synchron Eyes 2026 Pivotal Trial | BCI Intel](https://portal.chinng-lab-srv.dev/news/health/news-20260731-de8271.md) - [Neuralink Clinical Trials Tracker | Tesorb](https://portal.chinng-lab-srv.dev/news/health/news-20260731-9c0d6b.md) - [【DMMヘルスケア】健康経営をテーマとした企業向けオンラインカンファレンスを8月5日に開催 - PR TIMES](https://portal.chinng-lab-srv.dev/news/health/news-20260801-7b43e8.md) - [Gヘルスケア 街角ドクター訪問【テーマ:頭痛】 - tbs.co.jp](https://portal.chinng-lab-srv.dev/news/health/news-20260730-acaf99.md) - [Gヘルスケア 街角ドクター訪問【テーマ:頭痛】 - tbs.co.jp](https://portal.chinng-lab-srv.dev/news/health/news-20260729-35925a.md) - [Gヘルスケア 街角ドクター訪問【テーマ:頭痛】 - tbs.co.jp](https://portal.chinng-lab-srv.dev/news/health/news-20260728-a9b733.md) - (+27 more; see https://portal.chinng-lab-srv.dev/sitemap.xml) ## news/life - Feed: https://portal.chinng-lab-srv.dev/feeds/news/life.md - [https://www.kanto-kenpo.or.jp/asp/news2/news.asp?articleid=185295](https://portal.chinng-lab-srv.dev/news/life/news-20260801-48a731.md) - [https://nanbyo.jp/2025/12/24/koryoseimei/](https://portal.chinng-lab-srv.dev/news/life/news-20260801-a0145a.md) - [https://www.hokeni.org/docs/2025032700016/](https://portal.chinng-lab-srv.dev/news/life/news-20260801-95766b.md) - [https://www.tokyo-np.co.jp/article/390341](https://portal.chinng-lab-srv.dev/news/life/news-20260801-4df429.md) - [https://zenganren.jp/?p=5110](https://portal.chinng-lab-srv.dev/news/life/news-20260801-de0346.md) - [https://zenganren.jp/?p=5458](https://portal.chinng-lab-srv.dev/news/life/news-20260801-7bae8d.md) - [https://www.tokyo-np.co.jp/article/477634](https://portal.chinng-lab-srv.dev/news/life/news-20260801-25634c.md) - [https://hodanren.doc-net.or.jp/info/news/250714_02/](https://portal.chinng-lab-srv.dev/news/life/news-20260801-f8f6aa.md) - [https://www.mhlw.go.jp/content/12401000/001621844.pdf](https://portal.chinng-lab-srv.dev/news/life/news-20260801-cbd02f.md) - [https://www.kyoukaikenpo.or.jp/about/business/public_relations/009/002/index.html](https://portal.chinng-lab-srv.dev/news/life/news-20260801-4b5387.md) - [https://www.mhlw.go.jp/stf/seisakunitsuite/bunya/kenkou_iryou/iryouhoken/juuyou/kougakuiryou/index.html](https://portal.chinng-lab-srv.dev/news/life/news-20260801-e1310f.md) - [バンダイナムコホールディングスの最新動向と戦略](https://portal.chinng-lab-srv.dev/news/life/news-20260730-e7b1ea.md) - [限界集落からの再出発:地方創生の現場から](https://portal.chinng-lab-srv.dev/news/life/news-20260727-b098bf.md) - [敢闘賞とは?大相撲の三賞をわかりやすく解説](https://portal.chinng-lab-srv.dev/news/life/news-20260726-d60cd4.md) - [京都や奈良の世界遺産](https://portal.chinng-lab-srv.dev/news/life/news-20260717-876d36.md) - [古代日本の国家形成過程](https://portal.chinng-lab-srv.dev/news/life/news-20260717-a7ade6.md) - [富本銭](https://portal.chinng-lab-srv.dev/news/life/news-20260717-c52a21.md) - [遺跡を巡りながら1300年前の風景](https://portal.chinng-lab-srv.dev/news/life/news-20260717-4f669c.md) - [高松塚古墳](https://portal.chinng-lab-srv.dev/news/life/news-20260717-00aaaa.md) - [奈良県](https://portal.chinng-lab-srv.dev/news/life/news-20260717-30e95c.md) - (+9 more; see https://portal.chinng-lab-srv.dev/sitemap.xml) ## news/local - Feed: https://portal.chinng-lab-srv.dev/feeds/news/local.md - [山中に女性遺体 男から事情聴く](https://portal.chinng-lab-srv.dev/news/local/news-20260802-190dfa.md) - [熊本地震 生き埋めの妻救った夫](https://portal.chinng-lab-srv.dev/news/local/news-20260801-3e4596.md) - [ベトナム人5人八代で人命救助奮闘](https://portal.chinng-lab-srv.dev/news/local/news-20260801-b353c6.md) - [熊本地震で家失う 診療続ける医師](https://portal.chinng-lab-srv.dev/news/local/news-20260801-0e7074.md) - [男性が刺され死亡 おいの男を確保](https://portal.chinng-lab-srv.dev/news/local/news-20260731-bc2749.md) - [死亡生徒 辺野古コースの変更希望](https://portal.chinng-lab-srv.dev/news/local/news-20260731-51525e.md) - [地震後に新たな命 不安あったと母](https://portal.chinng-lab-srv.dev/news/local/news-20260731-839ccc.md) - [筑後川花火大会 地震を受け中止に](https://portal.chinng-lab-srv.dev/news/local/news-20260731-434c0c.md) - [熊本地震 液状化被害拡大の恐れ](https://portal.chinng-lab-srv.dev/news/local/news-20260731-8ff947.md) - [戦没者弔慰金を50年間誤支給 富山](https://portal.chinng-lab-srv.dev/news/local/news-20260731-41c799.md) - [辺野古転覆 なぜ命失わなければ](https://portal.chinng-lab-srv.dev/news/local/news-20260730-98422a.md) - [八王子射殺31年 新たに写真を公開](https://portal.chinng-lab-srv.dev/news/local/news-20260730-f2304f.md) - [DMATの医師 イオン捜索状況語る](https://portal.chinng-lab-srv.dev/news/local/news-20260730-7f076e.md) - [火災で4遺体 2人は死後1カ月超か](https://portal.chinng-lab-srv.dev/news/local/news-20260730-4a68c7.md) - [建て替えたばかり 八代市庁舎損傷](https://portal.chinng-lab-srv.dev/news/local/news-20260729-901c7c.md) - [地震後 自民福岡県議らパーティー](https://portal.chinng-lab-srv.dev/news/local/news-20260729-b7f665.md) - [国の名勝「松浜軒」地震で崩れる](https://portal.chinng-lab-srv.dev/news/local/news-20260729-6e8ff1.md) - [熊本城は臨時休園 石垣28カ所崩落](https://portal.chinng-lab-srv.dev/news/local/news-20260729-15c82e.md) - [熊本で地震 高速道路上下にずれる](https://portal.chinng-lab-srv.dev/news/local/news-20260729-649fd6.md) - [映像 イオン爆発時のドラレコ](https://portal.chinng-lab-srv.dev/news/local/news-20260728-cb0b77.md) - (+110 more; see https://portal.chinng-lab-srv.dev/sitemap.xml) ## news/politics - Feed: https://portal.chinng-lab-srv.dev/feeds/news/politics.md - [https://www.kantei.go.jp/jp/105/actions/202607/31security.html](https://portal.chinng-lab-srv.dev/news/politics/news-20260802-5d2dd3.md) - [https://www.digital.go.jp/policies/gov_cloud](https://portal.chinng-lab-srv.dev/news/politics/news-20260802-ba84f3.md) - [https://www.mod.go.jp/j/press/news/2024/07/02a_03.pdf](https://portal.chinng-lab-srv.dev/news/politics/news-20260802-32d66e.md) - [https://www.mod.go.jp/j/press/news/2025/07/28a_04.pdf](https://portal.chinng-lab-srv.dev/news/politics/news-20260802-faed4c.md) - [https://www.jiji.com/jc/article?k=2026080100280&g=pol](https://portal.chinng-lab-srv.dev/news/politics/news-20260802-81b87b.md) - [https://news.tv-asahi.co.jp/news_politics/articles/900194036.html](https://portal.chinng-lab-srv.dev/news/politics/news-20260729-abf0cd.md) - [https://www.asahi.com/articles/ASV6Z2RZ0V6ZUSPT00FM.html](https://portal.chinng-lab-srv.dev/news/politics/news-20260729-4e8972.md) - [https://www.yomiuri.co.jp/politics/20260615-GYT1T00453/](https://portal.chinng-lab-srv.dev/news/politics/news-20260729-cd3fb9.md) - [https://news.ntv.co.jp/category/politics/3ea19edaed8c487a83ebf885eb122591](https://portal.chinng-lab-srv.dev/news/politics/news-20260729-b3b113.md) - [https://www.asahi.com/articles/ASV7W33D2V7WULFA018M.html](https://portal.chinng-lab-srv.dev/news/politics/news-20260729-d58698.md) - [https://www.yomiuri.co.jp/politics/20260729-GYT1T00072/](https://portal.chinng-lab-srv.dev/news/politics/news-20260729-2162ac.md) - [高市首相が食料品消費税「1%」決断——2年限定減税の中身と財源をめぐる攻防](https://portal.chinng-lab-srv.dev/news/politics/news-20260729-e5578e.md) - [https://clairvoyant-report.com/2026/07/24/ロッキード事件とは|田中角栄・5億円と米国資料が示す全体像/](https://portal.chinng-lab-srv.dev/news/politics/news-20260728-750b97.md) - [https://www.yomiuri.co.jp/national/20260726-GYT1T00229/](https://portal.chinng-lab-srv.dev/news/politics/news-20260728-d1d327.md) - [https://www.asahi.com/articles/ASV7Q4C93V7QUTIL016M.html](https://portal.chinng-lab-srv.dev/news/politics/news-20260728-0919e5.md) - [https://mainichi.jp/articles/20260726/k00/00m/040/132000c](https://portal.chinng-lab-srv.dev/news/politics/news-20260728-3a9180.md) - [https://www.niigata-nippo.co.jp/articles/-/874749](https://portal.chinng-lab-srv.dev/news/politics/news-20260728-ec736e.md) - [https://www.moj.go.jp/content/001463284.pdf](https://portal.chinng-lab-srv.dev/news/politics/news-20260727-5b771a.md) - [https://www.moj.go.jp/MINJI/minji07_00400.html](https://portal.chinng-lab-srv.dev/news/politics/news-20260727-2ea62f.md) - [https://www.nishinippon.co.jp/item/1514662/](https://portal.chinng-lab-srv.dev/news/politics/news-20260727-3e642c.md) - (+38 more; see https://portal.chinng-lab-srv.dev/sitemap.xml) ## news/science - Feed: https://portal.chinng-lab-srv.dev/feeds/news/science.md - [HBOCの女性 着床前診断を申請へ](https://portal.chinng-lab-srv.dev/news/science/news-20260802-b99e64.md) - [过分!嘲讽张继科两名解说已被解除合作关系,但至今未公开向他道歉](https://portal.chinng-lab-srv.dev/news/science/news-20260802-d66d80.md) - [100均の“パーティーグッズ”をプランターに置くだけで……「ええ ...](https://portal.chinng-lab-srv.dev/news/science/news-20260802-d798e7.md) - [100均の“パーティーグッズ”をプランターに置くだけで……「ええ ...](https://portal.chinng-lab-srv.dev/news/science/news-20260802-ef112f.md) - [標高4000m超の高地にパンダ 中国](https://portal.chinng-lab-srv.dev/news/science/news-20260802-5114a3.md) - [痛みを和らげる科学 慢性的な痛みが消える日は来るのか](https://portal.chinng-lab-srv.dev/news/science/news-20260802-be2505.md) - [嘲讽张继科还想上综艺、打麻将,解说员会受到什么处罚?受伤仍坚持](https://portal.chinng-lab-srv.dev/news/science/news-20260802-237990.md) - [深度长文:你坚信的科学常识全是错觉? 宇宙根本不是你看到的样子](https://portal.chinng-lab-srv.dev/news/science/news-20260802-1258a4.md) - [张继科参加HYROX遭嘲讽,赛事官方致歉:已和2名解说解除合作关系](https://portal.chinng-lab-srv.dev/news/science/news-20260802-974522.md) - [AIに意識は宿る? 脳科学とデジタル技術が開く「不老不死」の扉](https://portal.chinng-lab-srv.dev/news/science/news-20260802-8be5d9.md) - [エボラ熱 コンゴで過去最大の流行](https://portal.chinng-lab-srv.dev/news/science/news-20260802-e95c56.md) - [人体已经被研究透了? 科学家说:你想多了](https://portal.chinng-lab-srv.dev/news/science/news-20260802-213967.md) - [「科学者になるため東大進学も研究室を出禁に」仕方なく医学部 ...](https://portal.chinng-lab-srv.dev/news/science/news-20260802-a71a4a.md) - [奥运冠军带伤完赛却被嘲讽!解说员公然调侃张继科“回家上综艺吧 ...](https://portal.chinng-lab-srv.dev/news/science/news-20260802-35d522.md) - [恐竜の絶滅が教える人間の“まずい現状” 国立科学博物館長の憂い ...](https://portal.chinng-lab-srv.dev/news/science/news-20260802-326fe7.md) - [「科学者になるため東大進学も研究室を出禁に」仕方なく医学部編入→32歳で医師になった男性が見つけた"意外な天職"](https://portal.chinng-lab-srv.dev/news/science/news-20260802-caeec6.md) - [次世代太陽電池「ペロブスカイト」の生みの親が明かす誕生の舞台裏(ニュースイッチ)](https://portal.chinng-lab-srv.dev/news/science/news-20260801-d9fb68.md) - [ペロブスカイト太陽電池とは|実用化の現状と耐久性・コスト](https://portal.chinng-lab-srv.dev/news/science/news-20260801-3d061e.md) - [ペロブスカイト太陽電池の実用化はいつ?2026年最新(Japan Energy Times)](https://portal.chinng-lab-srv.dev/news/science/news-20260801-bb25d7.md) - [LONGi、タンデム太陽電池で世界最高効率35.5%を達成(LONGi Service Japan)](https://portal.chinng-lab-srv.dev/news/science/news-20260801-8fa6f3.md) - (+754 more; see https://portal.chinng-lab-srv.dev/sitemap.xml) ## news/sports - Feed: https://portal.chinng-lab-srv.dev/feeds/news/sports.md - [阪神監督 2失策の前川に奮起促す](https://portal.chinng-lab-srv.dev/news/sports/news-20260802-11b2ef.md) - [板倉結婚 代表から個性溢れる祝福](https://portal.chinng-lab-srv.dev/news/sports/news-20260802-f7b9f6.md) - [川口春奈&板倉結婚 代表祝福続く](https://portal.chinng-lab-srv.dev/news/sports/news-20260802-4c988f.md) - [りくりゅう三浦 座長ショーで感涙](https://portal.chinng-lab-srv.dev/news/sports/news-20260802-05eb1b.md) - [甲子園出場の東筑 医学部志望4人](https://portal.chinng-lab-srv.dev/news/sports/news-20260802-8c3402.md) - [横川尚隆 プロデビュー戦で優勝](https://portal.chinng-lab-srv.dev/news/sports/news-20260802-ad1686.md) - [バレー男子 スロベニアに敗れ4位](https://portal.chinng-lab-srv.dev/news/sports/news-20260802-abda57.md) - [スクバル獲得報道 山本由伸は驚き](https://portal.chinng-lab-srv.dev/news/sports/news-20260802-375914.md) - [速報バレー男子 日本vsスロベニア](https://portal.chinng-lab-srv.dev/news/sports/news-20260802-7b685f.md) - [ドジャースがスクバル獲得へ 報道](https://portal.chinng-lab-srv.dev/news/sports/news-20260802-c8a031.md) - [【桧山進次郎】勝つには勝ったが守りで足引っ張った野手陣は反省すべき 下村海翔に早く1勝を](https://portal.chinng-lab-srv.dev/news/sports/news-20260802-fd9fb4.md) - [ド軍 2年連続CY賞左腕を獲得か](https://portal.chinng-lab-srv.dev/news/sports/news-20260802-bc7847.md) - [虎前川1軍に 骨折からわずか16日](https://portal.chinng-lab-srv.dev/news/sports/news-20260802-ded008.md) - [【楽天】平良竜哉「後半戦に入った時に『こういう風にやっていこう』と」2カ月ぶり9号放つ](https://portal.chinng-lab-srv.dev/news/sports/news-20260802-abbd94.md) - [高校野球地方大会で正午開始 なぜ](https://portal.chinng-lab-srv.dev/news/sports/news-20260802-8fa65d.md) - [吉田正尚 由伸の球「一級品」](https://portal.chinng-lab-srv.dev/news/sports/news-20260802-d012e5.md) - [トヨタ新型「“2ドア”スポーツカー」初登場! 650馬力超えの ...](https://portal.chinng-lab-srv.dev/news/sports/news-20260802-e10afb.md) - [松本人志が「長年の夢」ねぶた祭参加 開催前日に青森入りし生配信](https://portal.chinng-lab-srv.dev/news/sports/news-20260802-7ccdda.md) - [山本由伸 8回3失点の好投も7敗目](https://portal.chinng-lab-srv.dev/news/sports/news-20260802-5cc712.md) - [FIFAの計画中止 UEFAが追及姿勢](https://portal.chinng-lab-srv.dev/news/sports/news-20260802-d7832f.md) - (+1553 more; see https://portal.chinng-lab-srv.dev/sitemap.xml) ## news/tech - Feed: https://portal.chinng-lab-srv.dev/feeds/news/tech.md - [TechCrunch Mobility: Two roads diverged — for robotaxis](https://portal.chinng-lab-srv.dev/news/tech/news-20260802-7a1c4e.md) - [These App Store hidden gems prove there’s still room for great software in the AI era](https://portal.chinng-lab-srv.dev/news/tech/news-20260802-324bb9.md) - [EU AI規制法で透明性確保を義務化](https://portal.chinng-lab-srv.dev/news/tech/news-20260802-561252.md) - [https://www.darkreading.com/ics-ot-security/minnesota-water-utility-attacks-expose-sector-cyber-risks](https://portal.chinng-lab-srv.dev/news/tech/news-20260802-8d111d.md) - [https://www.cisa.gov/news-events/cybersecurity-advisories/aa26-097a](https://portal.chinng-lab-srv.dev/news/tech/news-20260802-86c985.md) - [https://www.cyber.go.jp/pdf/policy/general/kijyunr7.pdf](https://portal.chinng-lab-srv.dev/news/tech/news-20260802-55585e.md) - [https://aws.amazon.com/federal/top-secret-cloud/](https://portal.chinng-lab-srv.dev/news/tech/news-20260802-059626.md) - [https://www.preferred.jp/ja/news/pr20260729](https://portal.chinng-lab-srv.dev/news/tech/news-20260802-5f60c4.md) - [https://www.nikkei.com/article/DGXZQOCD075JJ0X00C26A5000000/](https://portal.chinng-lab-srv.dev/news/tech/news-20260802-6cd089.md) - [https://www.nikkei.com/article/DGXZQOUA132PQ0T10C26A7000000/](https://portal.chinng-lab-srv.dev/news/tech/news-20260802-62422f.md) - [防衛機密が民間クラウドへ——防衛省がAI活用のために「自前主義」を捨てる日](https://portal.chinng-lab-srv.dev/news/tech/news-20260802-ef75e8.md) - [RISC-Vが切り拓く半導体の新時代:オープンアーキテクチャが変えるAI・自動車・地政学の地図](https://portal.chinng-lab-srv.dev/news/tech/news-20260802-da9582.md) - [AI検索時代のSEO対策とコンテンツ構造化の基本](https://portal.chinng-lab-srv.dev/news/tech/news-20260802-65dfb7.md) - [GEO(生成エンジン最適化)実践ロードマップ(Generative AI Tokyo)](https://portal.chinng-lab-srv.dev/news/tech/news-20260802-d22b7b.md) - [Google 広告「AI Max for Search」活用ガイド(アナグラム株式会社)](https://portal.chinng-lab-srv.dev/news/tech/news-20260802-26163c.md) - [検索広告の自動化とAIO最前線(Web担当者Forum)](https://portal.chinng-lab-srv.dev/news/tech/news-20260802-9e83c7.md) - [Google AI Overviews と広告の最新展開(Google Official Blog)](https://portal.chinng-lab-srv.dev/news/tech/news-20260802-0b953f.md) - [【20周年アンケート】お互いベテランになったもんだ](https://portal.chinng-lab-srv.dev/news/tech/news-20260802-24d0d8.md) - [AI時代のWeb広告戦略とAIO・GEO対応ガイド|検索行動の変容を勝ち抜くハイブリッドマーケティング](https://portal.chinng-lab-srv.dev/news/tech/news-20260802-d2216b.md) - [Europeans Are About to Find Out How Entrenched AI Is in Their Daily Lives](https://portal.chinng-lab-srv.dev/news/tech/news-20260802-f50336.md) - (+2952 more; see https://portal.chinng-lab-srv.dev/sitemap.xml) ## news/world - Feed: https://portal.chinng-lab-srv.dev/feeds/news/world.md - [https://www.47news.jp/14715842.html](https://portal.chinng-lab-srv.dev/news/world/news-20260802-9d458b.md) - [https://www.defenceonline.co.uk/2025/11/27/nato-and-googlecloud-sign-agreement/](https://portal.chinng-lab-srv.dev/news/world/news-20260802-397bd3.md) - [https://www.googlecloudpresscorner.com/2025-09-11-Google-Cloud-Awarded-Landmark-Sovereign-Cloud-Contract-with-UK-Ministry-of-Defence](https://portal.chinng-lab-srv.dev/news/world/news-20260802-f26cce.md) - [https://defensescoop.com/2025/08/28/pentagon-ends-digital-escort-program-microsoft-hegseth/](https://portal.chinng-lab-srv.dev/news/world/news-20260802-6d11d7.md) - [https://defensescoop.com/2026/06/01/pentagon-jwcc-ucm-draft-performance-of-work-statement/](https://portal.chinng-lab-srv.dev/news/world/news-20260802-8c2b71.md) - [https://www.reuters.com/technology/pentagon-awards-9-bln-cloud-contracts-each-google-amazon-oracle-microsoft-2022-12-07/](https://portal.chinng-lab-srv.dev/news/world/news-20260802-77dd52.md) - [西班牙移民危機如何引發政治風暴 社交媒體推波助瀾](https://portal.chinng-lab-srv.dev/news/world/news-20260802-237f3f.md) - [Fire reported at another Wildberries warehouse in Russia](https://portal.chinng-lab-srv.dev/news/world/news-20260802-44c4b6.md) - [“强国必须强军,军强才能国安”](https://portal.chinng-lab-srv.dev/news/world/news-20260802-da4e21.md) - [情系桑梓 “侨”绘华章](https://portal.chinng-lab-srv.dev/news/world/news-20260802-594ffc.md) - [特朗普表示同意取消对伊朗的打击,前提是能“迅速”达成协议](https://portal.chinng-lab-srv.dev/news/world/news-20260802-b51c4d.md) - [“台湾太美啦”:1000公里环台单车之旅为何令人着迷?](https://portal.chinng-lab-srv.dev/news/world/news-20260802-80b0f9.md) - [中美俄的太空攻防战:卫星如何成为现代战争的第一击?](https://portal.chinng-lab-srv.dev/news/world/news-20260802-935f2f.md) - [AI-generated label becomes mandatory in the EU for companies](https://portal.chinng-lab-srv.dev/news/world/news-20260802-96bb48.md) - [Cutting sugar up to age two associated with lower dementia risk ‘decades later,’ study finds](https://portal.chinng-lab-srv.dev/news/world/news-20260802-d512b0.md) - [13 dead after Nazca Lines tourist flight crashes in Peru](https://portal.chinng-lab-srv.dev/news/world/news-20260802-85fd8d.md) - [藤森庆子就任总统 秘鲁在中美之间寻求新的平衡](https://portal.chinng-lab-srv.dev/news/world/news-20260802-b25cbd.md) - [普华永道:全球电动汽车普及进程放缓](https://portal.chinng-lab-srv.dev/news/world/news-20260802-e9f79a.md) - [AI自主入侵别家公司 安全问题引忧虑](https://portal.chinng-lab-srv.dev/news/world/news-20260802-5608b2.md) - [米ファストフード店で銃撃3人死亡](https://portal.chinng-lab-srv.dev/news/world/news-20260802-05c09a.md) - (+2962 more; see https://portal.chinng-lab-srv.dev/sitemap.xml) ## security/library - Feed: https://portal.chinng-lab-srv.dev/feeds/security/library.md - [GHSA-94p4-4cq8-9g67: GitPython: Environment-variable exfiltration via Repo.create_remote() / Remote.add() URL (incomplete fix of GHSA-rwj8-pgh3-r573)](https://portal.chinng-lab-srv.dev/security/library/security-20260725-df0150.md) - [GHSA-r9mr-m37c-5fr3: GitPython: Unsafe git option guard bypass via single-character kwarg value token smuggling enables arbitrary command execution](https://portal.chinng-lab-srv.dev/security/library/security-20260725-d05ab6.md) - [GHSA-6p8h-3wgx-97gf: GitPython: Incomplete unsafe_git_clone_options denylist omits --template enabling arbitrary command execution via clone hooks](https://portal.chinng-lab-srv.dev/security/library/security-20260725-96fd04.md) - [GHSA-fjr4-x663-mwxc: GitPython: Arbitrary file overwrite via git diff --output argument injection in Diffable.diff (key- and value-controlled)](https://portal.chinng-lab-srv.dev/security/library/security-20260725-aa9760.md) - [GHSA-3rp5-jjmw-4wv2: GitPython: git-config section-name injection enables arbitrary config directives (core.sshCommand RCE)](https://portal.chinng-lab-srv.dev/security/library/security-20260725-bc7367.md) - [CVE-2026-61632: PyMdown Extensions: Path traversal in the b64 extension lets read files outside base_path](https://portal.chinng-lab-srv.dev/security/library/security-20260725-6eddf9.md) - [CVE-2026-59819: LiteLLM: Local file read via request-supplied OIDC file references](https://portal.chinng-lab-srv.dev/security/library/security-20260724-34de13.md) - [CVE-2026-59820: LiteLLM: Arbitrary file write via path traversal in Skills archive extraction](https://portal.chinng-lab-srv.dev/security/library/security-20260724-5fecae.md) - [CVE-2026-59821: LiteLLM: Custom Code Guardrails production endpoints bypass code safety checks](https://portal.chinng-lab-srv.dev/security/library/security-20260724-cfd1d4.md) - [CVE-2026-59822: LiteLLM: MCP Authentication Bypass via OAuth2 Passthrough Fallback](https://portal.chinng-lab-srv.dev/security/library/security-20260724-819d64.md) - [CVE-2026-59200: Pillow: Decompression Bomb DoS via PdfParser.PdfStream.decode()](https://portal.chinng-lab-srv.dev/security/library/security-20260724-bc2416.md) - [CVE-2026-59204: Pillow JPEG2000 tiled decode retains a growing scratch buffer and can be used for denial of service](https://portal.chinng-lab-srv.dev/security/library/security-20260724-51d556.md) - [CVE-2026-54058: Pillow: Out-of-bounds read via attacker-controlled row stride on Pillow's mmap path (McIdas AREA files)](https://portal.chinng-lab-srv.dev/security/library/security-20260724-2a8214.md) - [CVE-2026-59198: Pillow TGA RLE encoder can serialize up to ~57 KB of adjacent heap data into generated images](https://portal.chinng-lab-srv.dev/security/library/security-20260724-a8f0ed.md) - [CVE-2026-52870: MCP Python SDK: Experimental task handlers allow any client to access and cancel other clients' tasks](https://portal.chinng-lab-srv.dev/security/library/security-20260724-13fb1a.md) - [CVE-2026-52869: MCP Python SDK: HTTP transports serve session requests without verifying the authenticated principal](https://portal.chinng-lab-srv.dev/security/library/security-20260724-270802.md) - [CVE-2026-59950: MCP Python SDK: WebSocket server transport does not support Host/Origin validation](https://portal.chinng-lab-srv.dev/security/library/security-20260724-2aafed.md) - [CVE-2026-59821: LiteLLM: Custom Code Guardrails production endpoints bypass code safety checks](https://portal.chinng-lab-srv.dev/security/library/security-20260723-537f58.md) - [CVE-2026-59822: LiteLLM: MCP Authentication Bypass via OAuth2 Passthrough Fallback](https://portal.chinng-lab-srv.dev/security/library/security-20260723-9fd6c7.md) - [CVE-2026-59819: LiteLLM: Local file read via request-supplied OIDC file references](https://portal.chinng-lab-srv.dev/security/library/security-20260723-c85540.md) - (+242 more; see https://portal.chinng-lab-srv.dev/sitemap.xml) ## security/os - Feed: https://portal.chinng-lab-srv.dev/feeds/security/os.md - [DEBIAN-CVE-2026-60005 — nginx](https://portal.chinng-lab-srv.dev/security/os/security-20260718-ff4471.md) - [DEBIAN-CVE-2026-56434 — nginx](https://portal.chinng-lab-srv.dev/security/os/security-20260719-649a91.md) - [DEBIAN-CVE-2026-42533 — nginx](https://portal.chinng-lab-srv.dev/security/os/security-20260719-3eea23.md) - [DEBIAN-CVE-2026-48142 — nginx](https://portal.chinng-lab-srv.dev/security/os/security-20260705-f7f2cd.md) - [DEBIAN-CVE-2026-42055 — nginx](https://portal.chinng-lab-srv.dev/security/os/security-20260705-fbcaf3.md) - [DEBIAN-CVE-2026-7383 — openssl](https://portal.chinng-lab-srv.dev/security/os/security-20260705-b82594.md) - [DEBIAN-CVE-2026-9076 — openssl](https://portal.chinng-lab-srv.dev/security/os/security-20260705-f52085.md) - [DEBIAN-CVE-2026-45446 — openssl](https://portal.chinng-lab-srv.dev/security/os/security-20260705-62db13.md) - [DEBIAN-CVE-2026-45447 — openssl](https://portal.chinng-lab-srv.dev/security/os/security-20260705-03d023.md) - [DEBIAN-CVE-2026-45445 — openssl](https://portal.chinng-lab-srv.dev/security/os/security-20260705-f5242e.md) - [DEBIAN-CVE-2026-42767 — openssl](https://portal.chinng-lab-srv.dev/security/os/security-20260705-44724c.md) - [DEBIAN-CVE-2026-42768 — openssl](https://portal.chinng-lab-srv.dev/security/os/security-20260705-72b7f7.md) - [DEBIAN-CVE-2026-42769 — openssl](https://portal.chinng-lab-srv.dev/security/os/security-20260705-6d07d4.md) - [DEBIAN-CVE-2026-42770 — openssl](https://portal.chinng-lab-srv.dev/security/os/security-20260705-56c620.md) - [DEBIAN-CVE-2026-42764 — openssl](https://portal.chinng-lab-srv.dev/security/os/security-20260705-02bf21.md) - [DEBIAN-CVE-2026-42765 — openssl](https://portal.chinng-lab-srv.dev/security/os/security-20260705-8ecc35.md) - [DEBIAN-CVE-2026-42766 — openssl](https://portal.chinng-lab-srv.dev/security/os/security-20260705-83dabe.md) - [DEBIAN-CVE-2026-34183 — openssl](https://portal.chinng-lab-srv.dev/security/os/security-20260705-53fc82.md) - [DEBIAN-CVE-2026-35188 — openssl](https://portal.chinng-lab-srv.dev/security/os/security-20260705-ee8746.md) - [DEBIAN-CVE-2026-34180 — openssl](https://portal.chinng-lab-srv.dev/security/os/security-20260705-f80dcc.md) - (+70 more; see https://portal.chinng-lab-srv.dev/sitemap.xml) ## sites - Feed: https://portal.chinng-lab-srv.dev/feeds/site.md - [worldmonitor.app](https://portal.chinng-lab-srv.dev/sites/worldmonitor.app.md) - [chirpwireless.io](https://portal.chinng-lab-srv.dev/sites/chirpwireless.io.md) - [phishdestroy.io](https://portal.chinng-lab-srv.dev/sites/phishdestroy.io.md) - [vambe.ai](https://portal.chinng-lab-srv.dev/sites/vambe.ai.md) - [portal.chinng-lab-srv.dev](https://portal.chinng-lab-srv.dev/sites/portal.chinng-lab-srv.dev.md) - [doxa.app](https://portal.chinng-lab-srv.dev/sites/doxa.app.md) - [the-world-now.com](https://portal.chinng-lab-srv.dev/sites/the-world-now.com.md) - [gotosocial.chinng-lab-srv.dev](https://portal.chinng-lab-srv.dev/sites/gotosocial.chinng-lab-srv.dev.md) - [ibl.ai](https://portal.chinng-lab-srv.dev/sites/ibl.ai.md) - [sitegpt.ai](https://portal.chinng-lab-srv.dev/sites/sitegpt.ai.md) - [free3d.io](https://portal.chinng-lab-srv.dev/sites/free3d.io.md) - [igni7e.jp](https://portal.chinng-lab-srv.dev/sites/igni7e.jp.md) - [socialchamp.io](https://portal.chinng-lab-srv.dev/sites/socialchamp.io.md) - [vast.ai](https://portal.chinng-lab-srv.dev/sites/vast.ai.md) - [pydantic.dev](https://portal.chinng-lab-srv.dev/sites/pydantic.dev.md) - [supabase.io](https://portal.chinng-lab-srv.dev/sites/supabase.io.md) - [numbersprotocol.io](https://portal.chinng-lab-srv.dev/sites/numbersprotocol.io.md) - [1inch.dev](https://portal.chinng-lab-srv.dev/sites/1inch.dev.md) - [jellywatch.app](https://portal.chinng-lab-srv.dev/sites/jellywatch.app.md) - [c15t.dev](https://portal.chinng-lab-srv.dev/sites/c15t.dev.md) - (+1442 more; see feeds/site.md)