Metadata-Version: 2.4
Name: neurocore-skill-telegram
Version: 0.1.0
Summary: Telegram messaging skill for NeuroCore
Author: NeuroCore Contributors
License-Expression: Apache-2.0
Keywords: ai,messaging,neurocore,notify,skill,telegram
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Classifier: Typing :: Typed
Requires-Python: >=3.13
Requires-Dist: httpx>=0.27
Requires-Dist: neurocore-ai>=0.2.0
Provides-Extra: dev
Requires-Dist: mypy>=1.8; extra == 'dev'
Requires-Dist: pytest-asyncio>=0.24; extra == 'dev'
Requires-Dist: pytest>=9.0.2; extra == 'dev'
Requires-Dist: ruff>=0.8; extra == 'dev'
Description-Content-Type: text/markdown

# neurocore-skill-telegram

Send Telegram messages from a NeuroCore flow (e.g. notifications, alerts,
human-approval pings) via the [Telegram Bot API](https://core.telegram.org/bots/api).

```bash
pip install neurocore-skill-telegram
export TELEGRAM_BOT_TOKEN=123456:ABC...
```

```yaml
components:
  - name: notify
    type: telegram
    config:
      chat_id: "123456789"
      parse_mode: Markdown
flow:
  type: sequential
  steps:
    - component: notify
```

Reads `telegram_text` (and optional `telegram_chat_id`, overriding config);
writes the Bot API response to `telegram_result`.
