new-module — for Claude Code new-module, helmlog, community, for Claude Code, ide skills, $ARGUMENTS, storage, conftest.py, Module, ARGUMENTS

v1.0.0

このスキルについて

Python分析エージェントが堅牢なログ記録とテスト機能を必要とする場合に最適です。特にハードウェア分離モジュールの場合に。 ローカライズされた概要: Scaffold a new hardware-isolated module with tests and wiring # New Module: $ARGUMENTS Follow this checklist to create a new hardware-isolated module. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

機能

New Module: $ARGUMENTS
Follow this checklist to create a new hardware-isolated module. Use TDD (/tdd)
for each step that involves code.
Create tests/test $ARGUMENTS.py with tests for the module's public API.
Use the storage fixture from conftest.py and mock any external I/O.

# Core Topics

weaties weaties
[1]
[1]
Updated: 3/18/2026

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reference-Only Page Review Score: 8/11

This page remains useful for teams, but Killer-Skills treats it as reference material instead of a primary organic landing page.

Original recommendation layer Concrete use-case guidance Explicit limitations and caution
Review Score
8/11
Quality Score
24
Canonical Locale
en
Detected Body Locale
en

Python分析エージェントが堅牢なログ記録とテスト機能を必要とする場合に最適です。特にハードウェア分離モジュールの場合に。 ローカライズされた概要: Scaffold a new hardware-isolated module with tests and wiring # New Module: $ARGUMENTS Follow this checklist to create a new hardware-isolated module. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

このスキルを使用する理由

TDDとPythonを使用して分離されたログモジュールを作成するエージェントを可能にし、外部I/O操作を分離し、HTTP、シリアル、USBなどのプロトコルを使用し、conftest.pyからのストレージフィクスチャを使用して効率的なテストを提供する。

おすすめ

Python分析エージェントが堅牢なログ記録とテスト機能を必要とする場合に最適です。特にハードウェア分離モジュールの場合に。

実現可能なユースケース for new-module

Raspberry Pi上のBとGインストルメント用のログ記録アプリを作成する
開発者向けの外部I/O操作を分離する
堅牢なモジュールを作成するためのテスト駆動開発を実装する

! セキュリティと制限

  • PythonとRaspberry Pi環境が必要
  • ハードウェア分離モジュールのみ
  • コードを含む各ステップでTDDの実装が必要

Why this page is reference-only

  • - Current locale does not satisfy the locale-governance contract.
  • - The underlying skill quality score is below the review floor.

Source Boundary

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

After The Review

Decide The Next Action Before You Keep Reading Repository Material

Killer-Skills should not stop at opening repository instructions. It should help you decide whether to install this skill, when to cross-check against trusted collections, and when to move into workflow rollout.

Labs Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

FAQ & Installation Steps

These questions and steps mirror the structured data on this page for better search understanding.

? Frequently Asked Questions

What is new-module?

Python分析エージェントが堅牢なログ記録とテスト機能を必要とする場合に最適です。特にハードウェア分離モジュールの場合に。 ローカライズされた概要: Scaffold a new hardware-isolated module with tests and wiring # New Module: $ARGUMENTS Follow this checklist to create a new hardware-isolated module. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

How do I install new-module?

Run the command: npx killer-skills add weaties/helmlog/new-module. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for new-module?

Key use cases include: Raspberry Pi上のBとGインストルメント用のログ記録アプリを作成する, 開発者向けの外部I/O操作を分離する, 堅牢なモジュールを作成するためのテスト駆動開発を実装する.

Which IDEs are compatible with new-module?

This skill is compatible with Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer. Use the Killer-Skills CLI for universal one-command installation.

Are there any limitations for new-module?

PythonとRaspberry Pi環境が必要. ハードウェア分離モジュールのみ. コードを含む各ステップでTDDの実装が必要.

How To Install

  1. 1. Open your terminal

    Open the terminal or command line in your project directory.

  2. 2. Run the install command

    Run: npx killer-skills add weaties/helmlog/new-module. The CLI will automatically detect your IDE or AI agent and configure the skill.

  3. 3. Start using the skill

    The skill is now active. Your AI agent can use new-module immediately in the current project.

! Reference-Only Mode

This page remains useful for installation and reference, but Killer-Skills no longer treats it as a primary indexable landing page. Read the review above before relying on the upstream repository instructions.

Upstream Repository Material

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

Upstream Source

new-module

Install new-module, an AI agent skill for AI agent workflows and automation. Review the use cases, limitations, and setup path before rollout.

SKILL.md
Readonly
Upstream Repository Material
The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.
Supporting Evidence

New Module: $ARGUMENTS

Follow this checklist to create a new hardware-isolated module. Use TDD (/tdd) for each step that involves code.

Checklist

1. Write tests first

Create tests/test_$ARGUMENTS.py with tests for the module's public API. Use the storage fixture from conftest.py and mock any external I/O.

2. Create the module

Create src/logger/$ARGUMENTS.py:

  • Single-purpose, under ~200 lines
  • All external I/O (HTTP, serial, USB, etc.) isolated in this module
  • Use dataclasses for structured data
  • Use loguru for logging (never print())
  • Full type annotations on all functions

3. Schema migration (if needed)

If the module needs database tables:

  • Bump _CURRENT_VERSION in storage.py
  • Add migration SQL to _MIGRATIONS dict
  • Add async storage methods (CRUD)
  • Test with the in-memory storage fixture

4. Web routes (if needed)

If the module needs API endpoints or admin UI:

  • Add to web.py following existing patterns
  • Admin pages: require require_auth("admin")
  • Add nav link in _nav_html()
  • Add web route tests in test_web.py

5. Wire into main.py

  • Import the module only in main.py (hardware isolation principle)
  • Parse config from env vars
  • Pass to _web_loop() / create_app() if needed
  • Add CLI subcommand if applicable

6. Sync dependencies

If the module requires new packages:

  • Add with uv add <package> (never edit pyproject.toml manually for deps)
  • Run uv sync and verify the import works
  • Never use uv pip install — it bypasses the lockfile and won't persist

7. Update config

  • Add new env vars to .env.example with comments
  • Update CLAUDE.md project structure tree

8. Run /pr-checklist

関連スキル

Looking for an alternative to new-module or another community skill for your workflow? Explore these related open-source skills.

すべて表示

openclaw-release-maintainer

Logo of openclaw
openclaw

ローカライズされた概要: 🦞 # OpenClaw Release Maintainer Use this skill for release and publish-time workflow. It covers ai, assistant, crustacean workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

333.8k
0
AI

nextjs-turbopack

[ 注目 ]
Logo of affaan-m
affaan-m

ローカライズされた概要: Next.js 16+ and Turbopack — incremental bundling, FS caching, dev speed, and when to use Turbopack vs webpack. It covers ai-agents, anthropic, claude workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

169.5k
0
生産性

widget-generator

Logo of f
f

ローカライズされた概要: Generate customizable widget plugins for the prompts.chat feed system # Widget Generator Skill This skill guides creation of widget plugins for prompts.chat . It covers ai, artificial-intelligence, awesome-list workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf

149.6k
0
AI

flags

Logo of vercel
vercel

ローカライズされた概要: The React Framework # Feature Flags Use this skill when adding or changing framework feature flags in Next.js internals. It covers blog, browser, compiler workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

138.4k
0
ブラウザ