AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified Apache-2.0 Self-run

Connectivity Ip

skill-beriberikix-zephyr-agent-skills-connectivity-ip · by beriberikix

IP networking fundamentals for Zephyr RTOS. Covers IoT protocol selection (LwM2M, CoAP, MQTT), IP stack configuration and trimming (IPv4/IPv6, UDP/TCP), and professional SDK integration as Zephyr modules using West manifests. Trigger when building cloud-connected applications, optimizing network memory usage, or integrating external cloud SDKs.

No reviews yet
0 installs
33 views
0.0% view→install

Install

$ agentstack add skill-beriberikix-zephyr-agent-skills-connectivity-ip

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-beriberikix-zephyr-agent-skills-connectivity-ip)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
4mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Connectivity Ip? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Zephyr Connectivity: IP Networking

Build memory-efficient, cloud-connected applications using Zephyr's modular IP stack and industry-standard IoT protocols.

Core Workflows

1. Protocol Selection

Choose the right protocol (LwM2M, CoAP, MQTT) based on your device's power and management needs.

  • Reference: [protocolselection.md](references/protocolselection.md)
  • Key Tools: CONFIG_COAP, CONFIG_LWM2M, CONFIG_MQTT_LIB.

2. IP Stack Configuration

Tune the networking stack to save Flash and RAM while ensuring reliable communication.

  • Reference: [ipstackconfig.md](references/ipstackconfig.md)
  • Key Tools: CONFIG_NET_IPV4, CONFIG_NET_BUF_RX_COUNT, DNS resolver.

3. SDK & Module Integration

Integrate external cloud SDKs and libraries as first-class Zephyr modules.

  • Reference: [sdkmoduleintegration.md](references/sdkmoduleintegration.md)
  • Key Tools: west.yml, zephyr/module.yml, name-allowlist.

Quick Start (Kconfig for CoAP)

# Minimal stack for CoAP over UDP
CONFIG_NETWORKING=y
CONFIG_NET_UDP=y
CONFIG_NET_IPV4=y
CONFIG_COAP=y
CONFIG_DNS_RESOLVER=y

Professional Patterns (Cloud Connectivity)

  • Extreme Trimming: Disable TCP and IPv6 if not strictly required to reclaim 10KB+ of RAM.
  • Manifest Control: Use an allow-list in your west.yml to prevent cloning hundreds of megabytes of unused vendor modules.
  • Async DNS: Use the asynchronous DNS resolver to prevent blocking the main application thread during host lookup.

Automation Tools

  • [netconfigaudit.py](scripts/netconfigaudit.py): Audit prj.conf networking flags for protocol/profile consistency.

Examples & Templates

  • [prjminimalcoap.conf](assets/prjminimalcoap.conf): Starter footprint-trimmed CoAP-over-UDP configuration.

Validation Checklist

  • [ ] Device obtains network connectivity and resolves DNS for the configured backend.
  • [ ] Selected protocol path (CoAP, MQTT, or LwM2M) completes connect and message exchange.
  • [ ] Disabled stack features (for example IPv6 or TCP) are absent from final .config when trimmed.
  • [ ] RAM/Flash footprint meets the expected optimization target after stack tuning.

Resources

  • [References](references/):
  • protocol_selection.md: LwM2M vs CoAP vs MQTT.
  • ip_stack_config.md: Optimizing buffers and disabling unused protocols.
  • sdk_module_integration.md: West manifest management and SDK modules.
  • [Scripts](scripts/):
  • net_config_audit.py: Quick audit helper for IP stack Kconfig flags.
  • [Assets](assets/):
  • prj_minimal_coap.conf: Baseline minimal IP profile template.

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.