Tooling Package¶
paglets.tooling contains command-line and repository-oriented helpers.
Responsibilities¶
- Provide the
paglets hostcommand-line entry point. - Discover importable paglet classes in configured paths.
- Keep trusted host meshes aligned with git auto-update.
- Provide repository quality gates through ruff, pyright, pytest, MkDocs, and CLI smoke checks.
Main Modules¶
paglets.tooling.cli- Parses host CLI flags, syncs launch config, optionally performs git
auto-update, constructs
Host, and starts the runtime. paglets.tooling.discovery- Discovers importable
Pagletsubclasses from configured source paths for admin and startup workflows. paglets.tooling.git_update- Wraps git fetch/pull/status operations, update locking, dependency sync, and restart decisions.
Implementation Notes¶
The console script points at paglets.tooling.cli:main. Runtime restarts use
python -m paglets.tooling.cli so the process does not depend on a locked
console-script wrapper on Windows.
Git auto-update only runs for trusted direct hosts. Relay/connect mode disables auto-update because connect-mode hosts do not accept inbound update requests.
The repository CI runs the same commands expected locally:
uv run ruff check .
uv run ruff format --check .
uv run pyright
uv run pytest
uv run --extra docs mkdocs build --strict
API Reference¶
paglets.tooling.cli
¶
paglets.tooling.discovery
¶
paglets.tooling.git_update
¶
GitUpdateError
¶
GitUpdateLock
¶
Cross-platform lock backed by atomic directory creation under .git.
Source code in src/paglets/tooling/git_update.py
82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 | |
Related Pages¶
- Configuration covers launch config loaded by the CLI.
- Remote covers admin clients and mesh discovery.