DeepSeek Harness plugin

dsh-vn-biz

Vietnam business utilities for DeepSeek Harness (dsh): VietQR quick-link, tax-code (MST) lookup, amount-to-Vietnamese-words.

Jump to install

Source facts

Repository
mikegabyte/dsh-vn-biz
Latest update
Aug 19, 2026
Category
Tools & Capabilities
GitHub stars
0
Format
plugin
Catalog evidence
Upstream dsh.bundle evidence
Evidence path
package.json#dsh.bundle
Checked against
0.1.0-rc.8
Upstream check date
2026-08-20

This evidence comes from the upstream catalog. This site has not installed, run, or security-reviewed the plugin.

Install

Start with a prompt that asks an agent to review the GitHub repository and source. Switch to the command if you want to install it yourself.

Copy this prompt into DSH, Codex, or another agent and ask it to review the GitHub repository and source first.

Do not install or run any commands yet. Read this plugin's GitHub repository, README, and relevant source code. Then answer the questions below clearly and directly so I can decide whether it fits my needs:

1. What is this plugin, and what problem does it solve?
2. Who is it for, and what are its typical use cases?
3. How is it used after installation? Include one minimal example.
4. What known limitations or privacy, security, compatibility, or maintenance risks does it have?
5. Give a clear recommendation: recommend, conditionally recommend, or do not recommend, with reasons.

Distinguish statements documented by the repository, inferences from source code, and unknowns. If evidence is insufficient, say so explicitly. Do not guess or simply repeat the README.

GitHub: https://github.com/mikegabyte/dsh-vn-biz
Plugin: dsh-vn-biz
Author: mikegabyte

Check the source files

Read the README and other files from this plugin directory before installing.

File explorer3 files
README.mdSource · read only

dsh-vn-biz

Bộ công cụ nghiệp vụ thị trường Việt Nam cho DeepSeek Harness. 3 tool giúp agent xử lý giấy tờ kiểu Việt Nam ngay trong chat: đọc số tiền VNĐ bằng chữ, tạo mã QR chuyển khoản, và tra cứu doanh nghiệp theo mã số thuế.

Không cần cấu hình API key, cài xong dùng luôn. Chỉ cần hỏi bằng ngôn ngữ tự nhiên, agent tự chọn đúng tool.

Vì sao cần tool riêng thay vì để agent tự trả lời

Cả 3 việc trên agent đều có thể "tự làm" mà không cần tool — nhưng làm sai hoặc tốn kém hơn hẳn:

  • Độ chính xác. Đọc số tiền tiếng Việt có nhiều luật ngoại lệ (mốt/lăm/linh, nhóm 3 số 0 nằm giữa như 1.000.000.005) mà model rất hay tính sai khi số lớn — nhất là khi phải nhân/chia nhẩm nhiều nhóm cùng lúc. amount_to_words chạy một thuật toán cố định, luôn ra đúng kết quả, không phụ thuộc model "đoán" đúng hay sai.
  • Tránh bịa thông tin (hallucination). Model không có database mã số thuế cập nhật — nếu để nó tự trả lời tên công ty theo MST, nó sẽ bịa ra một cái tên nghe hợp lý chứ không phải sự thật. tax_code_lookup luôn lấy dữ liệu thật từ API api.vietqr.io, đúng thì trả về, không có thì báo không tìm thấy, chứ không đoán.
  • Đúng chuẩn kỹ thuật. URL ảnh QR VietQR có định dạng cố định (bankId-accountNo-template.png?...) — để model tự viết tay chuỗi này rất dễ sai thứ tự tham số hoặc quên encode, quét không lên QR. vietqr_quicklink build đúng chuẩn mỗi lần.
  • Tối ưu token. Không có tool, model phải "suy nghĩ" từng bước để tự tính hoặc tự soạn chuỗi đúng định dạng, tốn token cho phần lý luận, và nếu sai còn phải sửa lại qua nhiều lượt hỏi-đáp. Có tool, một lệnh gọi trả thẳng kết quả đã đúng — vừa nhanh vừa rẻ.

Demo thật

Đọc số tiền bằng chữ

> Bạn: Đổi số tiền 15750000 sang chữ giúp mình

![amount_to_words trong dsh web](docs/screenshot-amount-to-words.png)

Tạo mã QR chuyển khoản VietQR

> Bạn: Tạo QR chuyển khoản Vietinbank số 113366668888, tên NGUYEN VAN A, 500000đ, nội dung 'thanh toan hoa don thang 8'.

![vietqr_quicklink trong dsh web](docs/screenshot-vietqr.png)

Tra cứu doanh nghiệp theo mã số thuế

> Bạn: Tra công ty mã số thuế 0100109106 giúp mình.

![tax_code_lookup trong dsh web](docs/screenshot-tax-lookup.png)

Cài đặt

git clone <repo-url> dsh-vn-biz
cd dsh-vn-biz
npm install
npm run build

Cài vào một profile đang chạy:

dsh plugin --profile <ten-profile> add /path/to/dsh-vn-biz

Nhớ restart dsh web sau khi cài — danh sách plugin được compose lúc khởi động, server đang chạy sẵn sẽ không tự nhận plugin mới.

Muốn thử nhanh không cài hẳn vào profile:

pnpm dsh web --patch /path/to/dsh-vn-biz/cordis.patch.yml

Cấu hình

- insert:
    - id: vn-biz
      name: dsh-vn-biz
      config:
        taxLookupApiBaseUrl: https://api.vietqr.io/v2/business

Ghi chú

  • tax_code_lookupvietqr_quicklink gọi API công khai bên thứ ba (api.vietqr.io, img.vietqr.io) — không cần key, nhưng cũng không có SLA uptime.
  • amount_to_words chỉ nhận số nguyên không âm (VNĐ không dùng phần thập phân trong thực tế).

License

MIT