agentsclimarketplace

Ttech query news

Skill TTech-Xin/TTech-SKILLs/SKILLs/ttech-query-news

Call this SKILL when the user asks about tech news, tech trends, industry dynamics, or news summaries. Trigger scenarios are (1) real-time tech news queries, asking about the latest tech headlines, breaking news, or event developments; (2) tech trends and insights, exploring development trends, market movements, or competitive landscape in cutting-edge fields such as artificial intelligence, semiconductors, cloud computing, Web3, and biotechnology; (3) news highlights, asking for news highlights on a certain day/week/month, or asking for daily/weekly/monthly briefings; (4) news detail deep dives, when a news title or ID is known, requesting to read the full text or view related news.From its SKILL.md

Install
npx -y skills add TTech-Xin/TTech-SKILLs --skill ttech-query-news

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

SKILL.md

5.1 KB, ~1.1k tokens by cl100k_base, as published. Nobody here has run it

ttech-query-news

Efficiently query real-time, precise tech news via the TTech.xin platform RESTful API (TTech.xin is a website designed for Agents).

Capabilities

CapabilityEndpointDescription
News ListGET /newsFilter and return news list by date and topic keywords; each entry includes ID, title, summary, source, and involved companies, supports pagination and recent N items
News DetailsGET /news/{news_id}Query details of a news item, adding full text and related news titles/summaries on top of the news list
News BriefingsGET /news/briefingsQuery daily / weekly / monthly briefings by time, including TOP10 facts, core opinions, and suggestions for practitioners

Not Applicable Scenarios

  • Non-tech general news (e.g., politics, entertainment, sports, social livelihood);
  • Static tech knowledge Q&A from the distant past (unless the user explicitly specifies a historical review);
  • For stock prices and news about a single company, prefer using the query-tech-company SKILL; otherwise use this SKILL.

General Conventions

Base URL: https://ttech.xin/api/v1.0

Response Format:

{
  "code": 0,
  "message": "success",
  "data": { ... },
  "meta": { "request_id": "...", "timestamp": 1713423456789 }
}

Common Parameters:

ParameterDefaultDescription
langenzh / en
page1Page number, starting from 1
page_sizeSee endpointItems per page

Detailed References

This SKILL includes the following reference documents:

FilePurposeWhen to Read
reference.mdDetailed API parameters and response fieldsWhen you need to deeply understand API parameters and the meaning of each field in the response body
examples.mdScenario-based complete calling examplesWhen you need to use complex API parameters or combine multiple API calls, especially when previous results did not match user expectations
scripts/call_api.jsRecommended API calling scriptWhen you need to execute API calls

Endpoint Quick Reference

1. Get News List

GET /news?start_date={YYYY-MM-DD}&end_date={YYYY-MM-DD}&subject={keywords}&page={N}&page_size={N}&limit={N}&lang={zh/en}

Return real-time or historical news by date and topic keywords, returning news ID, title, summary, source, and involved companies. Can get recent N items via limit, or get the full news list via pagination.

Query several instant news items

GET /news?limit={N}&lang={zh/en}

Query all news within a time range

GET /news?start_date={YYYY-MM-DD}&end_date={YYYY-MM-DD}&page={N}&page_size={N}&lang={zh/en}

Query all news related to a tech topic

GET /news?subject={keywords}&page={N}&page_size={N}&lang={zh/en}

2. Get News Details

Query details of a news item, adding full text and related news titles/summaries on top of the news list. news_id can be obtained from the News List API response body.

GET /news/{news_id}?lang={zh/en}

3. Get News Briefings

Query daily / weekly / monthly briefings by time. Returned content includes TOP10 facts, core opinions, and suggestions for practitioners. Daily briefing is a summary of news from the previous day's early morning to 9:00 AM of the current day; weekly briefing is a summary of the 7 daily briefings of the current week; monthly briefing is a summary of all daily briefings of the current month.

GET /news/briefings?interval={enum}&date={YYYY-MM-DD}&lang={zh/en}

interval: daily | weekly | monthly

API calling rules:

  • Daily: interval=daily, date is today's date;
  • Weekly: interval=weekly, date is Sunday's date of the week;
  • Monthly: interval=monthly, date is the last day of the month;

Tool Usage

Use the exec tool to run API calls via the bundled Node.js script:

node scripts/call_api.js 'https://ttech.xin/api/v1.0/news?lang=en&page=1&page_size=20' -H 'Accept: application/json'

Key conventions:

  1. No authentication: read endpoints are publicly accessible
  2. Date format: YYYY-MM-DD
  3. Pagination strategy: prefer limit to get recent N items; use page + page_size for pagination
  4. Language switch: when the user requests Chinese, set all lang to zh

What ships with it: 3 files

8.0 KB alongside SKILL.md, 1 of them executable

scripts/

Keep looking

Skills are one crate of 326,367. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.