ado-sync 0.1.64 → 0.1.67

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 (63) hide show
  1. package/README.md +20 -15
  2. package/dist/__tests__/regressions.test.js +1011 -1
  3. package/dist/__tests__/regressions.test.js.map +1 -1
  4. package/dist/ai/generate-spec.d.ts +1 -1
  5. package/dist/ai/generate-spec.js +23 -0
  6. package/dist/ai/generate-spec.js.map +1 -1
  7. package/dist/ai/summarizer.d.ts +3 -2
  8. package/dist/ai/summarizer.js +50 -1
  9. package/dist/ai/summarizer.js.map +1 -1
  10. package/dist/azure/test-cases.d.ts +11 -1
  11. package/dist/azure/test-cases.js +286 -43
  12. package/dist/azure/test-cases.js.map +1 -1
  13. package/dist/cli.js +91 -14
  14. package/dist/cli.js.map +1 -1
  15. package/dist/config.js +74 -1
  16. package/dist/config.js.map +1 -1
  17. package/dist/id-markers.d.ts +1 -0
  18. package/dist/id-markers.js +13 -0
  19. package/dist/id-markers.js.map +1 -1
  20. package/dist/mcp-server.js +1 -1
  21. package/dist/mcp-server.js.map +1 -1
  22. package/dist/sync/cache.d.ts +2 -0
  23. package/dist/sync/cache.js.map +1 -1
  24. package/dist/sync/engine.d.ts +12 -1
  25. package/dist/sync/engine.js +210 -41
  26. package/dist/sync/engine.js.map +1 -1
  27. package/dist/types.d.ts +56 -4
  28. package/llms.txt +12 -11
  29. package/package.json +8 -1
  30. package/docs/advanced.md +0 -988
  31. package/docs/agent-setup.md +0 -204
  32. package/docs/capability-roadmap.md +0 -280
  33. package/docs/cli.md +0 -609
  34. package/docs/configuration.md +0 -322
  35. package/docs/examples/csharp-mstest-local-llm.yaml +0 -35
  36. package/docs/examples/csharp-mstest.yaml +0 -21
  37. package/docs/examples/csharp-nunit.yaml +0 -21
  38. package/docs/examples/csharp-specflow.yaml +0 -16
  39. package/docs/examples/cypress.yaml +0 -21
  40. package/docs/examples/detox-react-native.yaml +0 -21
  41. package/docs/examples/espresso-android.yaml +0 -21
  42. package/docs/examples/flutter-dart.yaml +0 -21
  43. package/docs/examples/java-junit.yaml +0 -21
  44. package/docs/examples/java-testng.yaml +0 -21
  45. package/docs/examples/js-jasmine-wdio.yaml +0 -21
  46. package/docs/examples/js-jest.yaml +0 -21
  47. package/docs/examples/playwright-js.yaml +0 -21
  48. package/docs/examples/playwright-ts.yaml +0 -21
  49. package/docs/examples/puppeteer.yaml +0 -21
  50. package/docs/examples/python-pytest.yaml +0 -21
  51. package/docs/examples/robot-framework.yaml +0 -19
  52. package/docs/examples/testcafe.yaml +0 -21
  53. package/docs/examples/xcuitest-ios.yaml +0 -21
  54. package/docs/mcp-server.md +0 -312
  55. package/docs/publish-test-results.md +0 -939
  56. package/docs/spec-formats.md +0 -1357
  57. package/docs/troubleshooting.md +0 -101
  58. package/docs/vscode-extension.md +0 -139
  59. package/docs/work-item-links.md +0 -115
  60. package/docs/workflows.md +0 -457
  61. package/mkdocs.yml +0 -40
  62. package/requirements-docs.txt +0 -4
  63. package/scripts/build_site.sh +0 -6
package/README.md CHANGED
@@ -73,18 +73,18 @@ Minimum config:
73
73
 
74
74
  | Topic | Link |
75
75
  |-------|------|
76
- | CLI reference | [docs/cli.md](docs/cli.md) |
77
- | Configuration reference | [docs/configuration.md](docs/configuration.md) |
78
- | Capability roadmap | [docs/capability-roadmap.md](docs/capability-roadmap.md) |
79
- | Spec file formats | [docs/spec-formats.md](docs/spec-formats.md) |
80
- | Workflow examples (per framework + CI) | [docs/workflows.md](docs/workflows.md) |
81
- | Work item links | [docs/work-item-links.md](docs/work-item-links.md) |
82
- | Publishing test results | [docs/publish-test-results.md](docs/publish-test-results.md) |
83
- | Advanced features | [docs/advanced.md](docs/advanced.md) |
84
- | AI agent setup | [docs/agent-setup.md](docs/agent-setup.md) |
85
- | MCP Server | [docs/mcp-server.md](docs/mcp-server.md) |
86
- | VS Code Extension | [docs/vscode-extension.md](docs/vscode-extension.md) |
87
- | Troubleshooting | [docs/troubleshooting.md](docs/troubleshooting.md) |
76
+ | CLI reference | [docs-site/docs/cli.md](docs-site/docs/cli.md) |
77
+ | Configuration reference | [docs-site/docs/configuration.md](docs-site/docs/configuration.md) |
78
+ | Capability roadmap | [docs-site/docs/capability-roadmap.md](docs-site/docs/capability-roadmap.md) |
79
+ | Spec file formats | [docs-site/docs/spec-formats.md](docs-site/docs/spec-formats.md) |
80
+ | Workflow examples (per framework + CI) | [docs-site/docs/workflows.md](docs-site/docs/workflows.md) |
81
+ | Work item links | [docs-site/docs/work-item-links.md](docs-site/docs/work-item-links.md) |
82
+ | Publishing test results | [docs-site/docs/publish-test-results.md](docs-site/docs/publish-test-results.md) |
83
+ | Advanced features | [docs-site/docs/advanced.md](docs-site/docs/advanced.md) |
84
+ | AI agent setup | [docs-site/docs/agent-setup.md](docs-site/docs/agent-setup.md) |
85
+ | MCP Server | [docs-site/docs/mcp-server.md](docs-site/docs/mcp-server.md) |
86
+ | VS Code Extension | [docs-site/docs/vscode-extension.md](docs-site/docs/vscode-extension.md) |
87
+ | Troubleshooting | [docs-site/docs/troubleshooting.md](docs-site/docs/troubleshooting.md) |
88
88
 
89
89
  ---
90
90
 
@@ -99,6 +99,7 @@ ado-sync supports multiple AI providers for test-step summarisation (`push`/`pul
99
99
  | `heuristic` | push / pull / status | none — built-in | none |
100
100
  | `local` | push / pull / status | `node-llama-cpp` *(included)* | GGUF model file path |
101
101
  | `ollama` | all AI commands | `npm i ollama` | local Ollama server |
102
+ | `docker` | all AI commands | `npm i openai` | Docker Desktop with Model Runner — no API key |
102
103
  | `openai` | all AI commands | `npm i openai` | `$OPENAI_API_KEY` |
103
104
  | `anthropic` | all AI commands | `npm i @anthropic-ai/sdk` | `$ANTHROPIC_API_KEY` |
104
105
  | `huggingface` | all AI commands | `npm i openai` | `$HF_TOKEN` |
@@ -112,6 +113,7 @@ ado-sync supports multiple AI providers for test-step summarisation (`push`/`pul
112
113
  - Use `heuristic` for zero-setup summaries.
113
114
  - Use `local` for GGUF models through `node-llama-cpp`.
114
115
  - Use `ollama` if you already manage models with Ollama.
116
+ - Use `docker` for Docker Model Runner — local inference via Docker Desktop, no API key required.
115
117
  - Use `openai`, `anthropic`, `github`, `bedrock`, `azureai`, or `azureinference` for hosted/provider-backed generation.
116
118
  - For `generate`, pass a small set of relevant files with `--ai-context` instead of the whole repo.
117
119
 
@@ -121,6 +123,9 @@ Examples:
121
123
  # Fastest setup
122
124
  ado-sync push --ai-provider heuristic
123
125
 
126
+ # Local inference via Docker Desktop (no API key)
127
+ ado-sync push --ai-provider docker --ai-model ai/llama3.2
128
+
124
129
  # Hosted model
125
130
  ado-sync push --ai-provider github --ai-model gpt-4o
126
131
 
@@ -140,8 +145,8 @@ Set once in `ado-sync.json` to apply to all commands:
140
145
 
141
146
  Detailed AI setup, local-model guidance, provider-specific examples, and generate-context recommendations are in the docs:
142
147
 
143
- - [docs/cli.md](docs/cli.md)
144
- - [docs/advanced.md](docs/advanced.md)
145
- - [docs/mcp-server.md](docs/mcp-server.md)
148
+ - [docs-site/docs/cli.md](docs-site/docs/cli.md)
149
+ - [docs-site/docs/advanced.md](docs-site/docs/advanced.md)
150
+ - [docs-site/docs/mcp-server.md](docs-site/docs/mcp-server.md)
146
151
 
147
152
  > **LLM / AI crawlers:** [`llms.txt`](llms.txt) contains a single-file summary of the entire project — config schema, CLI flags, ID writeback formats, and the full doc index.