pilot-workers 0.2.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (66) hide show
  1. pilot_workers/__init__.py +1 -0
  2. pilot_workers/__main__.py +3 -0
  3. pilot_workers/cli/__init__.py +0 -0
  4. pilot_workers/cli/dispatch.py +577 -0
  5. pilot_workers/cli/install.py +259 -0
  6. pilot_workers/cli/main.py +115 -0
  7. pilot_workers/cli/run.py +191 -0
  8. pilot_workers/credentials.py +102 -0
  9. pilot_workers/data/permissions/README.md +47 -0
  10. pilot_workers/data/permissions/relaxed.yaml +10 -0
  11. pilot_workers/data/permissions/strict.yaml +9 -0
  12. pilot_workers/data/providers/README.md +24 -0
  13. pilot_workers/data/providers/ds.yaml +11 -0
  14. pilot_workers/data/providers/glm.yaml +11 -0
  15. pilot_workers/data/providers/kimi-k3.yaml +11 -0
  16. pilot_workers/data/templates/code.md +28 -0
  17. pilot_workers/data/templates/explore.md +17 -0
  18. pilot_workers/data/templates/review.md +18 -0
  19. pilot_workers/data/templates/test.md +17 -0
  20. pilot_workers/fmt_events.py +218 -0
  21. pilot_workers/integrations/README.md +25 -0
  22. pilot_workers/integrations/claude-host/agents/ds-coder.md +66 -0
  23. pilot_workers/integrations/claude-host/agents/ds-explorer.md +56 -0
  24. pilot_workers/integrations/claude-host/agents/ds-reviewer.md +50 -0
  25. pilot_workers/integrations/claude-host/agents/ds-tester.md +46 -0
  26. pilot_workers/integrations/claude-host/agents/glm-coder.md +66 -0
  27. pilot_workers/integrations/claude-host/agents/glm-explorer.md +56 -0
  28. pilot_workers/integrations/claude-host/agents/glm-reviewer.md +50 -0
  29. pilot_workers/integrations/claude-host/agents/glm-tester.md +46 -0
  30. pilot_workers/integrations/claude-host/agents/kimi-coder.md +66 -0
  31. pilot_workers/integrations/claude-host/agents/kimi-explorer.md +56 -0
  32. pilot_workers/integrations/claude-host/agents/kimi-reviewer.md +50 -0
  33. pilot_workers/integrations/claude-host/agents/kimi-tester.md +50 -0
  34. pilot_workers/integrations/claude-host/commands/glm/code.md +48 -0
  35. pilot_workers/integrations/claude-host/commands/glm/explore.md +38 -0
  36. pilot_workers/integrations/claude-host/commands/glm/review.md +38 -0
  37. pilot_workers/integrations/claude-host/commands/glm/test.md +30 -0
  38. pilot_workers/integrations/claude-host/commands/kimi/code.md +47 -0
  39. pilot_workers/integrations/claude-host/commands/kimi/explore.md +38 -0
  40. pilot_workers/integrations/claude-host/commands/kimi/review.md +38 -0
  41. pilot_workers/integrations/claude-host/commands/kimi/test.md +32 -0
  42. pilot_workers/integrations/codex-host/ds/SKILL.md +15 -0
  43. pilot_workers/integrations/codex-host/ds/openai.yaml +4 -0
  44. pilot_workers/integrations/codex-host/glm/SKILL.md +15 -0
  45. pilot_workers/integrations/codex-host/glm/openai.yaml +4 -0
  46. pilot_workers/integrations/codex-host/kimi/SKILL.md +15 -0
  47. pilot_workers/integrations/codex-host/kimi/openai.yaml +4 -0
  48. pilot_workers/maintain.py +170 -0
  49. pilot_workers/policy.py +295 -0
  50. pilot_workers/prompts/code.md +6 -0
  51. pilot_workers/prompts/common.md +24 -0
  52. pilot_workers/prompts/explore.md +7 -0
  53. pilot_workers/prompts/review.md +5 -0
  54. pilot_workers/prompts/test.md +6 -0
  55. pilot_workers/providers.py +137 -0
  56. pilot_workers/runners/__init__.py +28 -0
  57. pilot_workers/runners/base.py +123 -0
  58. pilot_workers/runners/opencode_runner.py +377 -0
  59. pilot_workers/runtime.py +314 -0
  60. pilot_workers/scripts/install_runtime.sh +51 -0
  61. pilot_workers-0.2.0.dist-info/METADATA +84 -0
  62. pilot_workers-0.2.0.dist-info/RECORD +66 -0
  63. pilot_workers-0.2.0.dist-info/WHEEL +5 -0
  64. pilot_workers-0.2.0.dist-info/entry_points.txt +2 -0
  65. pilot_workers-0.2.0.dist-info/licenses/LICENSE +21 -0
  66. pilot_workers-0.2.0.dist-info/top_level.txt +1 -0
@@ -0,0 +1,51 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+
4
+ # The pinned version has a single source of truth:
5
+ # src/pilot_workers/runners/opencode_runner.py (PINNED_OPENCODE_VERSION).
6
+ SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
7
+ OPENCODE_VERSION="$(python3 -c "from pilot_workers.runners.opencode_runner import PINNED_OPENCODE_VERSION as v; print(v)")"
8
+ if [[ -z "${OPENCODE_VERSION}" ]]; then
9
+ echo "error: could not read PINNED_OPENCODE_VERSION from runners/opencode_runner.py" >&2
10
+ exit 1
11
+ fi
12
+
13
+ readonly CODEX_ROOT="${CODEX_HOME:-${HOME}/.codex}"
14
+ readonly INSTALL_ROOT="${CODEX_ROOT}/worker-runtime/opencode/${OPENCODE_VERSION}"
15
+ readonly OPENCODE_BIN="${INSTALL_ROOT}/node_modules/.bin/opencode"
16
+
17
+ if ! command -v npm >/dev/null 2>&1; then
18
+ echo "error: npm is required to install the pinned OpenCode runtime" >&2
19
+ exit 1
20
+ fi
21
+
22
+ if [[ -x "${OPENCODE_BIN}" ]]; then
23
+ actual_version="$(${OPENCODE_BIN} --version 2>&1)"
24
+ if [[ "${actual_version}" == "${OPENCODE_VERSION}" ]]; then
25
+ echo "OpenCode ${OPENCODE_VERSION} is already installed at ${OPENCODE_BIN}"
26
+ exit 0
27
+ fi
28
+ fi
29
+
30
+ mkdir -p "${INSTALL_ROOT}"
31
+ chmod 700 "${CODEX_ROOT}/worker-runtime" "${CODEX_ROOT}/worker-runtime/opencode" "${INSTALL_ROOT}"
32
+
33
+ npm install \
34
+ --prefix "${INSTALL_ROOT}" \
35
+ --no-package-lock \
36
+ --no-save \
37
+ --ignore-scripts=false \
38
+ "opencode-ai@${OPENCODE_VERSION}"
39
+
40
+ if [[ ! -x "${OPENCODE_BIN}" ]]; then
41
+ echo "error: npm completed but did not create ${OPENCODE_BIN}" >&2
42
+ exit 1
43
+ fi
44
+
45
+ actual_version="$(${OPENCODE_BIN} --version 2>&1)"
46
+ if [[ "${actual_version}" != "${OPENCODE_VERSION}" ]]; then
47
+ echo "error: expected OpenCode ${OPENCODE_VERSION}, got ${actual_version}" >&2
48
+ exit 1
49
+ fi
50
+
51
+ echo "Installed OpenCode ${OPENCODE_VERSION} at ${OPENCODE_BIN}"
@@ -0,0 +1,84 @@
1
+ Metadata-Version: 2.4
2
+ Name: pilot-workers
3
+ Version: 0.2.0
4
+ Summary: Dispatch bounded tasks to isolated LLM workers (GLM, Kimi, and more)
5
+ License-Expression: MIT
6
+ Requires-Python: >=3.11
7
+ Description-Content-Type: text/markdown
8
+ License-File: LICENSE
9
+ Provides-Extra: yaml
10
+ Requires-Dist: pyyaml>=6.0; extra == "yaml"
11
+ Provides-Extra: dev
12
+ Requires-Dist: pytest>=8.0; extra == "dev"
13
+ Requires-Dist: pyyaml>=6.0; extra == "dev"
14
+ Dynamic: license-file
15
+
16
+ # pilot-workers
17
+
18
+ Dispatch bounded tasks to isolated LLM workers. Your main AI agent (Claude, Codex, or any planner) stays in control of requirements, planning, and verification — the worker only executes what it's told.
19
+
20
+ ## What it does
21
+
22
+ - **Provider isolation**: each model (GLM, Kimi, or your own) gets its own credentials, XDG directories, logs, and session storage. No cross-contamination.
23
+ - **Fixed routing**: provider, model, and endpoint are locked per YAML config. Tasks cannot override them.
24
+ - **Security by default**: API keys never appear in CLI args, environment variables, task contracts, or logs. Output is auto-redacted.
25
+ - **Five modes**: `code` (edit), `explore` (read-only), `test` (run tests), `review` (read-only audit), `resume` (continue a prior code session).
26
+ - **Observable**: `worker_runner.started` → heartbeats → `worker_runner.summary`. Human-readable live log at `latest.log` for `tail -f`.
27
+ - **Pluggable runners**: currently wraps [OpenCode](https://opencode.ai) via `@ai-sdk/openai-compatible`; the runner interface is designed for future alternatives (Aider, Continue, etc.).
28
+
29
+ ## Quick start
30
+
31
+ ```bash
32
+ # 1. Install the pinned OpenCode runtime
33
+ pilot-workers runtime install
34
+
35
+ # 2. Add a provider (YAML files in src/pilot_workers/data/providers/)
36
+ # GLM and Kimi are included; add your own by copying the template
37
+
38
+ # 3. Configure credentials (interactive, key never displayed)
39
+ python3 -m pilot_workers.credentials glm
40
+ python3 -m pilot_workers.credentials kimi-k3
41
+
42
+ # 4. Verify
43
+ python3 -m pilot_workers.cli.run --provider glm --mode explore --workdir . --task "hello" --dry-run
44
+
45
+ # 5. Run a real task
46
+ python3 -m pilot_workers.cli.run \
47
+ --provider glm --mode code \
48
+ --workdir /path/to/project \
49
+ --task-file /path/to/task.md
50
+ ```
51
+
52
+ ## Adding a new provider
53
+
54
+ Drop a YAML file in `data/providers/` (inside the package):
55
+
56
+ ```yaml
57
+ key: deepseek
58
+ provider_id: deepseek-worker
59
+ model_id: deepseek-coder-v3
60
+ base_url: https://api.deepseek.com/v1
61
+ display_name: DeepSeek Coder V3
62
+ context_tokens: 128000
63
+ output_tokens: 8192
64
+ ```
65
+
66
+ Then `python3 -m pilot_workers.credentials deepseek` and you're done.
67
+
68
+ ## Host integration
69
+
70
+ The **host** is whatever AI agent acts as the planner — Claude, Codex, Gemini, GLM itself, or anything that can write a task file and call the CLI.
71
+
72
+ `integrations/` has ready-made configs for current hosts:
73
+ - **`claude-host/`**: 12 agents + 8 slash commands (`/glm:code`, `/kimi:explore`, etc.)
74
+ - **`codex-host/`**: `$glm` / `$kimi` / `$ds` skill entry points
75
+
76
+ Adding a new host: create `integrations/<name>-host/`, put whatever config your host needs, point it at `python3 -m pilot_workers.cli.run`. See `integrations/README.md`.
77
+
78
+ ## Architecture
79
+
80
+ See [docs/architecture.md](docs/architecture.md) for the shared contract, security model, and verification checklist.
81
+
82
+ ## License
83
+
84
+ MIT
@@ -0,0 +1,66 @@
1
+ pilot_workers/__init__.py,sha256=cxeWywoHvaOCFXynpw57ppMPCMYFwTkeA8odI_hgmDw,69
2
+ pilot_workers/__main__.py,sha256=t3aDCuovrf0R-SnmPQIeWnxCVZ6-bbKZ47VFe5vl1DM,66
3
+ pilot_workers/credentials.py,sha256=oMgLgqaXXSLXhnWH_HAPP3kNUPVnlZht9qEYqjUU4VM,3554
4
+ pilot_workers/fmt_events.py,sha256=lcY6Dae-pUQuuGrJrsO5f0yilOIlRpO2m3BUSbzjUwY,7629
5
+ pilot_workers/maintain.py,sha256=CJBhzJnA6PM7F8EF5308Si8YlrkFj2VxWo3Bm2_4C78,6154
6
+ pilot_workers/policy.py,sha256=gaeGW2ZaO7OBiYPSf0fdj5qnmK4qTHkV8yggJdaKU-k,9433
7
+ pilot_workers/providers.py,sha256=CCzQ0koNxTUVjLgnNOiMHCBML-6iPh6JA2V0EFTkSxI,4402
8
+ pilot_workers/runtime.py,sha256=kyD0vY1Ruzvpv763zvDJRdLWHLx-H_8Qj5NbyeBkGT0,12117
9
+ pilot_workers/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
10
+ pilot_workers/cli/dispatch.py,sha256=HjSShmbU0_2etqjy0OPAhXDe7U5QqchV1Tj87cUbvoY,18498
11
+ pilot_workers/cli/install.py,sha256=r2aYXj_dpRMAWATeZceqr-VxhnecKxDFL2NBcmXJvKA,9051
12
+ pilot_workers/cli/main.py,sha256=79fF7IVVogUPUGucuMdbp_uZA-OfBrQwlydzLXb7WVk,3585
13
+ pilot_workers/cli/run.py,sha256=bbucDRcgZ8y67SMNg5TgxYQBOFcX3lRSXlgGp_3MifA,8135
14
+ pilot_workers/data/permissions/README.md,sha256=kqFQGyvOhay15JIUASIW2aAh600Rix7iYvrnSoCLKHU,998
15
+ pilot_workers/data/permissions/relaxed.yaml,sha256=T4JWLtgAjKeHZv2b5JFnAEBy41kwkIZu9KnSh05VKvU,231
16
+ pilot_workers/data/permissions/strict.yaml,sha256=ptNtrPoQRrexSbVklfCdq_DsBs60yxRqb9ceZTnN7K0,211
17
+ pilot_workers/data/providers/README.md,sha256=mteyQkPyhwCZ9-1Hd-40v4MB3Wg_-xM2yg_NWZHRamQ,1044
18
+ pilot_workers/data/providers/ds.yaml,sha256=WQIwqjkeyaSqZpTaF9mdM33dNCrk5WKicJYjO5xUr8o,314
19
+ pilot_workers/data/providers/glm.yaml,sha256=vvN2xgZmWVhmqeT7gFcmSNGavrinH9KRdR2c-3KhZ2s,343
20
+ pilot_workers/data/providers/kimi-k3.yaml,sha256=ZKsBQaraLHzenani5K0t3zsg77wRT1PvfCtUef8pIGw,378
21
+ pilot_workers/data/templates/code.md,sha256=QQkywTe5-Dqxpr0a_oI-vOuUFxclvbuc4AQjfmwG8kg,1476
22
+ pilot_workers/data/templates/explore.md,sha256=aJeQ6fV7x_TWMFeKo8yxFCJ1GYAUGjc2ORvOJe8-jYw,1076
23
+ pilot_workers/data/templates/review.md,sha256=doGwxxFHupqFOh7nwEx6KnHKLYpeCZjDdR21jBbGOIQ,909
24
+ pilot_workers/data/templates/test.md,sha256=I1HD4B4pnby42kcAF2H0P68SBK7LGRVb2UQKgdaV2so,930
25
+ pilot_workers/integrations/README.md,sha256=BzJdTxEHkXLBOPjHZQYKEimgvOn96w4klAlDTwv18KQ,1128
26
+ pilot_workers/integrations/claude-host/agents/ds-coder.md,sha256=0cQQabB1vL9TR7toIpQetiT_pEzxuK8XkX7wQP0UjjY,5602
27
+ pilot_workers/integrations/claude-host/agents/ds-explorer.md,sha256=plYgXo4zVQDkj-NQU0uUx4LpHBRXf9MlRoYtRvAkXQc,4598
28
+ pilot_workers/integrations/claude-host/agents/ds-reviewer.md,sha256=WydWi6HrP6GvhegNa6EN3QM5AolgsovBBzOtfRlozF4,3966
29
+ pilot_workers/integrations/claude-host/agents/ds-tester.md,sha256=ijU6H-EUVCDpATS6OHfmFCcStGnMUz523GSPlxAA4og,3577
30
+ pilot_workers/integrations/claude-host/agents/glm-coder.md,sha256=W14_gfQa0TPeQglByp-HZx0PzSUNGjD96lTsnfo2fPM,5583
31
+ pilot_workers/integrations/claude-host/agents/glm-explorer.md,sha256=7CwlRxR50_zmyjdz_HTJ1Ib13sY9AKoBkI_SqG2Sats,4583
32
+ pilot_workers/integrations/claude-host/agents/glm-reviewer.md,sha256=Xd3djRpVf76qZsSmtjpWx4NT-_B-sm6gMbcC65JTASk,3955
33
+ pilot_workers/integrations/claude-host/agents/glm-tester.md,sha256=iNG35jFMGz7D6Qp996_ijkR6LIQ4SxNlrGBYUQvoRSM,3563
34
+ pilot_workers/integrations/claude-host/agents/kimi-coder.md,sha256=CSphYIdI_Vwod4h5TjrJgRAzCaQqAXt4LUVRJwGwJO0,5606
35
+ pilot_workers/integrations/claude-host/agents/kimi-explorer.md,sha256=ZfZKzbpuONI_FSCt0-W5HszJkdSuDALDMe5RJLSIwBs,4601
36
+ pilot_workers/integrations/claude-host/agents/kimi-reviewer.md,sha256=KfWH6kkGM8F0GbwLc3QLpPlFFQFNIkJjIHFnMGrXf5A,3971
37
+ pilot_workers/integrations/claude-host/agents/kimi-tester.md,sha256=2-cTVCI6iZ0c4lBdc7_zWUHnp9Bs4j5dixZ7CdEANRE,4013
38
+ pilot_workers/integrations/claude-host/commands/glm/code.md,sha256=TRN48nF7cF_Qd2bC9rpZRrFieBdmvGLeLLTgysrZh5I,4906
39
+ pilot_workers/integrations/claude-host/commands/glm/explore.md,sha256=jjRsHpPhdpBn2k8DDk_xjEoBUqhw4V8iOa0IliAn-JM,3459
40
+ pilot_workers/integrations/claude-host/commands/glm/review.md,sha256=FGI8LE7qaaDL4myfijCr1cDndjrbwEyZHKy70jV8S24,3583
41
+ pilot_workers/integrations/claude-host/commands/glm/test.md,sha256=FDGU4an1O9fIP2Oqzb7Pb8zobYQJaTdot-uFDpmIVfY,2803
42
+ pilot_workers/integrations/claude-host/commands/kimi/code.md,sha256=8spNPD5llNl_xcZ88B8YixtPmTv9gOD-IBJudd1T9rg,4609
43
+ pilot_workers/integrations/claude-host/commands/kimi/explore.md,sha256=jB_PMc_pP9v-NZ8fpjD8LUz12JOkHQWfQxgM7wqi-E0,3474
44
+ pilot_workers/integrations/claude-host/commands/kimi/review.md,sha256=z1lw8FnxC_ioNuoV--MfRbeXEah8X95EMquLAlrOF2k,3594
45
+ pilot_workers/integrations/claude-host/commands/kimi/test.md,sha256=k4V2BGrsrN2_Vk1pWYgWKIY_HYV29ITVVD7hP6q076o,3282
46
+ pilot_workers/integrations/codex-host/ds/SKILL.md,sha256=2WTFuRfidVOynCed3yMCVn0oQ_Az_zX6ElFsFL5i1KY,2413
47
+ pilot_workers/integrations/codex-host/ds/openai.yaml,sha256=9H57ch7KAC0my_OolEsEqCKvCVXXb8w9xygj6gryK6c,185
48
+ pilot_workers/integrations/codex-host/glm/SKILL.md,sha256=_bP_y1P8alWU5KXQZvk0ik7mtc62n9pUQHb1kbByUCo,2409
49
+ pilot_workers/integrations/codex-host/glm/openai.yaml,sha256=6sig_r6LLscULOjf0GRvBTRhU5CwIB2dWhWk9cotbmQ,151
50
+ pilot_workers/integrations/codex-host/kimi/SKILL.md,sha256=8ArHcXAEU5s7m66RsXqo_9Gz3vWSSggpp9KSVpi53ro,2441
51
+ pilot_workers/integrations/codex-host/kimi/openai.yaml,sha256=CqGtY2oGvyrKl6uM1xc_HaMfaSQTjqqNMBLOGm67BEc,153
52
+ pilot_workers/prompts/code.md,sha256=3xQ1bgZ0lqEKVvl5JqvSRSRMuhBZ8DRAV7bORYk-Q5Y,620
53
+ pilot_workers/prompts/common.md,sha256=LPKQub-6kNg6j8GcxhPrgTwFMQJcAvCRhb6HMfJRoxE,1809
54
+ pilot_workers/prompts/explore.md,sha256=C_cP5HQ6GEdGp3AVS3pF6JE6-XVQDM9TXyq9bkwjLrc,620
55
+ pilot_workers/prompts/review.md,sha256=kwtUCoIFW36hSSeC62tN5ibDMAJP2HWbFWvFrLkjFQI,453
56
+ pilot_workers/prompts/test.md,sha256=7jcsR9hyHUkjS6YZ0qwCWVCaKuiSZXR9wyAQtKTwiyg,421
57
+ pilot_workers/runners/__init__.py,sha256=kz82FJBFXJTeZmVSac7fyU0KXX9oVK5SJO1MXVy6COg,821
58
+ pilot_workers/runners/base.py,sha256=gtOK_HaK9OuyZX7A-9IbwHD5Jiuf2y5RIAe3nBlh0mI,5034
59
+ pilot_workers/runners/opencode_runner.py,sha256=KCRBzGcRb7CZk3QQwNto5IeTqeVbGH2InW55ftr-5pk,13468
60
+ pilot_workers/scripts/install_runtime.sh,sha256=GwQAKbamJsSvoIGYt_M6NXfKInigOBHAOi77DaTy-h4,1736
61
+ pilot_workers-0.2.0.dist-info/licenses/LICENSE,sha256=ESYyLizI0WWtxMeS7rGVcX3ivMezm-HOd5WdeOh-9oU,1056
62
+ pilot_workers-0.2.0.dist-info/METADATA,sha256=JD0OhEEtybXCM5y-f_2C3iSq6g_HUoRMdfE7-f-bsvg,3264
63
+ pilot_workers-0.2.0.dist-info/WHEEL,sha256=K260EYznzXsJYBQGqmI8VTxEdiZYNvDZwW9cBh9-_MA,91
64
+ pilot_workers-0.2.0.dist-info/entry_points.txt,sha256=feWDxGcznJIc8unFN23kjZlyrxiyG1Q0SzH4RcKapSE,62
65
+ pilot_workers-0.2.0.dist-info/top_level.txt,sha256=abA_ucmiDYjGZBvjxuFCqVWNeyxFfkrFNQQ1AhLZf1s,14
66
+ pilot_workers-0.2.0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (83.0.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ pilot-workers = pilot_workers.cli.main:main
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1 @@
1
+ pilot_workers