Token导航 LogoToken导航TokenDH.com
前端设计敏感数据github未标认证来源可访问许可证需确认审计通过

line-notification-message线路通知消息

Agent Skill

line-notification-message 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

519

周安装

21

GitHub Stars

公开资料未说明

下载量

163
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:line-notification-message(线路通知消息)
来源仓库:https://github.com/abgne/line-dev
仓库路径:skills/line-notification-message
安装命令:
npx skills add https://github.com/abgne/line-dev --skill line-notification-message
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/abgne/line-dev --skill line-notification-message

简介

line-notification-message 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中围绕仓库状态或协作事项进行整理时使用。

  • 它适用于代码协作和仓库管理场景,可结合来源仓库和原始 README 核验具体用法。
  • 安装命令为 npx skills add https://github.com/abgne/line-dev --skill line-notification-message。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

LINE Notification Messages

Do not answer LINE Notification Messages questions from memory — LINE updates APIs frequently and training data is unreliable. Always consult the references below.

LINE Notification Messages allow sending messages to users by specifying their phone number (SHA256-hashed E.164 format), even if they haven't added the LINE Official Account as a friend. Corporate-only service available in Japan, Thailand, and Taiwan. Not for advertising or commercial purposes.

Workflow

Build

  1. Read references/api-common.md (rate limits, forward compatibility, error handling)
  2. Load the relevant reference for the feature being implemented
  3. For architecture or design choices, consult references/experts.md for directional guidance
  4. Write code following specs and constraints from references

Review / Debug

  1. Read references/api-common.md (rate limits, error codes)
  2. Load relevant references for the code being reviewed
  3. Cross-check code against specs (phone hashing format, sending conditions, consent states, billing rules, IP restriction warnings)
  4. For design pattern concerns, consult references/experts.md
  5. Report violations with reference to specific constraints

Environment Variables

LINE_CHANNEL_ACCESS_TOKEN=Bot access token (Messaging API channel)
LINE_CHANNEL_SECRET=Channel secret (webhook signature verification)

Common Specifications

Read references/api-common.md before writing any notification message code. Contains rules that affect all API interactions: forward compatibility (don't use strict schemas — LINE adds fields without notice), rate limits, error handling, and logging recommendations.

Two Message Types

TypeDescriptionUX ReviewSend Endpoint
TemplatePredefined layout with templateKey, itemKey, buttonKey. Easy to set up.Not requiredPOST /v2/bot/message/pnp/templated/push
FlexibleFree-form message objects (Flex Message, text, etc.). Greater design freedom.RequiredPOST /bot/pnp/push
  • Template type added June 2025 — simpler, no UX review needed
  • Flexible type (formerly just "LINE notification messages") — allows custom message objects but requires prior UX review
  • Both types: no images, video, or audio allowed

Full type comparison → references/sending-api.md

Minimal Flow (pseudocode)

# 1. Hash phone number (E.164 → SHA256)
phone = "+818000001234"                    # E.164 format, no hyphens
hashed = SHA256(phone.encode()).hexdigest() # 64-char lowercase hex

# 2a. Send via template type
POST https://api.line.me/v2/bot/message/pnp/templated/push
Authorization: Bearer {channel_access_token}
X-Line-Delivery-Tag: {optional_tracking_tag}
{
  "to": hashed,
  "templateKey": "shipment_completed_ja",
  "body": {
    "emphasizedItem": {"itemKey": "date_002_ja", "content": "August 10"},
    "items": [{"itemKey": "number_001_ja", "content": "1234567"}],
    "buttons": [{"buttonKey": "contact_ja", "url": "https://example.com"}]
  }
}
# → Response: 202 Accepted

# 2b. OR send via flexible type
POST https://api.line.me/bot/pnp/push
Authorization: Bearer {channel_access_token}
{
  "to": hashed,
  "messages": [{"type": "text", "text": "Your order has shipped"}]
}
# → Response: 200 OK

# 3. IMPORTANT: 200/202 does NOT guarantee delivery
#    User may be blocked, consent not given, SMS auth expired, etc.

# 4. Delivery confirmation arrives via webhook
#    event.type = "delivery", delivery.data = hashed phone or delivery tag

API Endpoint Summary

OperationEndpointResponse
Send (Template)POST /v2/bot/message/pnp/templated/push202
Send (Flexible)POST /bot/pnp/push200
Count (Template)GET /v2/bot/message/delivery/pnp/templated?date=yyyyMMdd200
Count (Flexible)GET /v2/bot/message/delivery/pnp?date=yyyyMMdd200
  • Domain: api.line.me
  • Rate limit: 2,000 req/sec for all endpoints
  • X-Line-Retry-Key is NOT supported — do not use retry keys
  • Do NOT restrict server IP in channel Security Settings — may cause sending failure

Full API specs, parameters, error codes → references/sending-api.md

Key Concepts

Phone Number Hashing

  1. Normalize to E.164 format (country code, no hyphens): +818000001234
  2. Hash with SHA256: hashlib.sha256("+818000001234".encode()).hexdigest()
  3. Result: 64-char lowercase hex string

Sending Conditions (ALL must be met)

  1. Phone number matches user's LINE account
  2. Phone number is valid (SMS authenticated)
  3. User agrees to receive LINE notification messages
  4. User has not blocked the LINE Official Account
  5. Phone number issued in Japan, Thailand, or Taiwan
  6. User has agreed to LINE's Privacy Policy (revised March 2022)

User Consent States

StateBehavior
Agree (on)Message delivered normally
Reject (off)Message deleted, not delivered
Not setUser receives consent prompt; 24 hours to agree or message is deleted
  • Consent is comprehensive — once agreed, applies to ALL LINE Official Accounts

SMS Authentication

  • Required once every 180 days
  • Not required within 180 days of account creation or phone number change

Delivery Confirmation

  • API response 200/202 does NOT guarantee delivery
  • Use delivery completion webhook (type: "delivery") to confirm actual delivery
  • No webhook within 24 hours = message was not delivered

Full technical specs → references/technical-specs.md Template system details → references/template-system.md Webhook details → references/delivery-webhook.md

Reference Index

FileTopic
references/api-common.mdRead first. Rate limits, status codes, error handling, forward compatibility
references/sending-api.mdSend APIs (template + flexible), count APIs, request/response specs, error codes
references/template-system.mdTemplate structure: templateKey, itemKey, buttonKey, field limits, country suffixes
references/technical-specs.mdPhone hashing, sending conditions, consent flow, SMS auth, billing, IP restrictions
references/delivery-webhook.mdDelivery completion event, X-Line-Delivery-Tag, user consent flows, non-friend behavior
references/experts.mdLINE Notification Messages domain experts for architecture guidance

SDK

Official SDKs: Python | Node.js | Go | Java | PHP | Ruby

Other languages: use LINE OpenAPI specs with OpenAPI Generator.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

33.79%
按下载量换算55

Claude

31.51%
按下载量换算51

Cursor

20.03%
按下载量换算33

Gemini CLI

9.03%
按下载量换算15

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills