/SKILL.md
# DSE-AI CLI Skill This skill provides AI-friendly access to Dhaka Stock Exchange (DSE) data through a command-line interface. ## Data Source **Direct web scraping** from dsebd.org - No API server or authentication required! The CLI scrapes data directly from: - Latest: https://dsebd.org/latest_share_price_scroll_l.php - DSEX: https://dsebd.org/dseX_share.php - Top 30: https://dsebd.org/dse30_share.php - Top 20: https://dsebd.org/top_20_share.php - Historical: https://dsebd.org/day_end_archi
npx skillsauth add auniik/dse-ai dse-aiInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
This skill provides AI-friendly access to Dhaka Stock Exchange (DSE) data through a command-line interface.
Direct web scraping from dsebd.org - No API server or authentication required!
The CLI scrapes data directly from:
dse-ai latest - Get latest stock data for all instrumentsdse-ai dsex [symbol] - Get DSEX market data with optional symbol filterdse-ai top30 - Get top 30 performing stocksdse-ai top20 - Get top 20 shares (3 tables: by value, volume, trade)
--value - Show only top 20 by value--volume - Show only top 20 by volume--trade - Show only top 20 by tradedse-ai historical --start DATE --end DATE [--inst SYMBOL] - Get historical stock dataAll commands support:
--json flag for programmatic processing--markdown flag for documentation--toon flag for LLM-optimized compact format# Install dependencies
npm install
# Run in dev mode
npm run dev
# Build
npm run build
# Run tests
npm test
# Link globally for testing
npm run link
After linking globally:
dse-ai --help
dse-ai latest
dse-ai dsex GRAMEEN
dse-ai top30
dse-ai historical --start 2024-01-01 --end 2024-01-31
Based on the Python implementation in /Users/anik/dev/auniik/dsentiment/services/stock_service.py:
tools
Use when work should span one or more detached tasks but still behave like one job with a single owner context. TaskFlow is the durable flow substrate under authoring layers like Lobster, ACPX, plugins, or plain code. Keep conditional logic in the caller; use TaskFlow for flow identity, child-task linkage, waiting state, revision-checked mutations, and user-facing emergence.
tools
# Lobster Lobster executes multi-step workflows with approval checkpoints. Use it when: - User wants a repeatable automation (triage, monitor, sync) - Actions need human approval before executing (send, post, delete) - Multiple tool calls should run as one deterministic operation ## When to use Lobster | User intent | Use Lobster? | | ------------------------------------------------------ | --------------------------
tools
# Lobster Lobster executes multi-step workflows with approval checkpoints. Use it when: - User wants a repeatable automation (triage, monitor, sync) - Actions need human approval before executing (send, post, delete) - Multiple tool calls should run as one deterministic operation ## When to use Lobster | User intent | Use Lobster? | | ------------------------------------------------------ | --------------------------
tools
A CLI tool for making authenticated requests to the X (Twitter) API. Use this skill when you need to post tweets, reply, quote, search, read posts, manage followers, send DMs, upload media, or interact with any X API v2 endpoint.