ワンクリックで
nim-imports
Common import patterns and pitfalls for the Tattletale Nim project
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Common import patterns and pitfalls for the Tattletale Nim project
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Nim testing conventions, unittest framework, and C++ compatibility patterns
Nim bindings to libtorch for tensor operations with high-level sugar
Nim type system patterns and pitfalls
Regex functionality in Nim including std/re, std/nre wrappers around PCRE, and the pure Nim nim-regex alternative with linear-time matching guarantees
Nim to Python interoperability including nimpy for calling Python from Nim and exporting Nim to Python, nimporter for packaging Nim modules as Python packages, and cffi/ctypes for calling Nim from Python
Nim's hash table module for key-value storage
| name | nim-imports |
| description | Common import patterns and pitfalls for the Tattletale Nim project |
| license | MIT |
| compatibility | opencode |
| metadata | {"audience":"developers","workflow":"nim-development"} |
I provide guidelines for importing modules and common pitfalls in the Tattletale Nim project.
/home/beta/Programming/Perso/tattletale/
├── config.nims # Project-level config with paths and tasks
├── workspace/
└── mylib/ # First-party libraries
├── mylib.nim # Re-exports all public symbols
├── src/
│ └── mylib.nim # Implementation
└── tests/
└── test_mylib.nim # Tests
import workspace/mylib # Imports from mylib.nim which re-exports
Note: Do NOT use import workspace/mylib/mylib - the .nim extension and file path are handled by the config.nims --path:"." setting.
import pkg/jsony # For packages installed via nimble
import std/tables # For stdlib modules
import std/os
import std/json
import std/sequtils # IMPORTANT: Required for mapIt
Always import std/sequtils when using mapIt:
import std/sequtils # MISSING import causes: "undeclared identifier: mapIt"
let nums = @[1, 2, 3]
let doubled = nums.mapIt(it * 2) # Fails without sequtils import
WRONG:
import toktoktok # Fails - not in stdlib or pkg
import workspace/toktoktok/toktoktok.nim # Wrong path
CORRECT:
import workspace/toktoktok # Imports the re-export module
pkg/ - Third-party packages installed via nimble (e.g., jsony, chronos)workspace/ - First-party project librariesimport pkg/jsony # Third-party JSON library
import workspace/toktoktok # Your project's tokenizer
To access private (non-*) procedures from a module, use the {.all.} pragma:
import workspace/toktoktok {.all.}
# Now you can access bytePairEncode and bytePairMerge even though they were private
let ranks = initTable[seq[byte], int]()
ranks[@[byte(228), byte(189)]] = 19526
let result = bytePairEncode(piece, ranks)
For accessing private fields of objects, use std/importutils with privateAccess:
# file_a.nim
type MyObjectA* = object # public
privateFieldA: int # privaterivate
# file_b.nim
type MyObjectB = object # private
privateFieldB: int # private
# file_c.nim
import std/importutils
import file_a # MyObjectA is public
import file_b {.all.} # MyObjectB is private
block:
privateAccess(MyObjectA)
let obj = MyObject(privateFieldA: 42)
echo obj.privateFieldA # Accessible in this scope
block:
privateAccess(MyObjectB)
let obj = MyObject(privateFieldB: 42)
echo obj.privateFieldB # Accessible in this scope
Each workspace library should have a re-export module at the root:
# workspace/mylib/mylib.nim
# Re-exports all public symbols from src/ and submodules
export src/mylib
This allows users to import workspace/mylib instead of knowing the internal structure.
PCRE2 is vendored in workspace/pcre2. The config.nims automatically sets:
No manual configuration needed - just import workspace/pcre2.
The project root has a config.nims that sets:
--path:"." - Allows import workspace/foo syntaxTests are discovered by:
workspace/*/tests/ directorytest_ or t_