@rudderhq/agent-runtime-gemini-local 0.2.1 → 0.2.2-canary.0

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 (42) hide show
  1. package/package.json +2 -2
  2. package/skills/conversation-to-skill/LICENSE.txt +202 -0
  3. package/skills/conversation-to-skill/SKILL.md +428 -0
  4. package/skills/conversation-to-skill/agents/analyzer.md +274 -0
  5. package/skills/conversation-to-skill/agents/comparator.md +202 -0
  6. package/skills/conversation-to-skill/agents/grader.md +223 -0
  7. package/skills/conversation-to-skill/assets/eval_review.html +146 -0
  8. package/skills/conversation-to-skill/eval-viewer/generate_review.py +471 -0
  9. package/skills/conversation-to-skill/eval-viewer/viewer.html +1325 -0
  10. package/skills/conversation-to-skill/references/compatibility.md +36 -0
  11. package/skills/conversation-to-skill/references/description-optimization.md +113 -0
  12. package/skills/conversation-to-skill/references/evaluation-suite.md +410 -0
  13. package/skills/conversation-to-skill/references/schemas.md +431 -0
  14. package/skills/conversation-to-skill/scripts/__init__.py +0 -0
  15. package/skills/conversation-to-skill/scripts/aggregate_benchmark.py +401 -0
  16. package/skills/conversation-to-skill/scripts/generate_report.py +335 -0
  17. package/skills/conversation-to-skill/scripts/improve_description.py +197 -0
  18. package/skills/conversation-to-skill/scripts/model_backends.py +115 -0
  19. package/skills/conversation-to-skill/scripts/package_skill.py +136 -0
  20. package/skills/conversation-to-skill/scripts/quick_validate.py +103 -0
  21. package/skills/conversation-to-skill/scripts/run_eval.py +363 -0
  22. package/skills/conversation-to-skill/scripts/run_loop.py +319 -0
  23. package/skills/conversation-to-skill/scripts/utils.py +223 -0
  24. package/skills/rudder/references/organization-skills.md +1 -1
  25. package/skills/skill-creator/SKILL.md +9 -0
  26. package/skills/skill-optimizer/CHANGELOG.md +29 -0
  27. package/skills/skill-optimizer/SKILL.md +205 -0
  28. package/skills/skill-optimizer/references/adapters/creative-brand-content.md +30 -0
  29. package/skills/skill-optimizer/references/adapters/customer-support-sales.md +30 -0
  30. package/skills/skill-optimizer/references/adapters/document-data-processing.md +31 -0
  31. package/skills/skill-optimizer/references/adapters/education-training.md +31 -0
  32. package/skills/skill-optimizer/references/adapters/finance-accounting.md +31 -0
  33. package/skills/skill-optimizer/references/adapters/healthcare-operations.md +30 -0
  34. package/skills/skill-optimizer/references/adapters/hr-people-ops.md +31 -0
  35. package/skills/skill-optimizer/references/adapters/legal-compliance.md +31 -0
  36. package/skills/skill-optimizer/references/adapters/operations-supply-chain.md +31 -0
  37. package/skills/skill-optimizer/references/adapters/personal-productivity.md +29 -0
  38. package/skills/skill-optimizer/references/adapters/research-knowledge.md +31 -0
  39. package/skills/skill-optimizer/references/adapters/software-ai.md +31 -0
  40. package/skills/skill-optimizer/references/domain-adapter-patterns.md +66 -0
  41. package/skills/skill-optimizer/references/eval-method.md +17 -0
  42. package/skills/skill-optimizer/references/universal-optimization-lens.md +73 -0
@@ -0,0 +1,73 @@
1
+ # Universal Optimization Lens
2
+
3
+ Use this when a skill optimization is complex, cross-domain, or likely to recur.
4
+
5
+ ## 1. Purpose and scope
6
+
7
+ - What durable job does this skill own?
8
+ - What is explicitly outside scope?
9
+ - What user role or team does it serve?
10
+ - Does the skill preserve its original identity after the patch?
11
+
12
+ ## 2. Triggering and boundaries
13
+
14
+ - What should trigger the skill?
15
+ - What near-miss queries should not trigger it?
16
+ - Which other skills might compete with it?
17
+ - Does the description include enough context without becoming keyword spam?
18
+
19
+ ## 3. Inputs and assumptions
20
+
21
+ - What required inputs must be discovered before work begins?
22
+ - What source of truth should be used?
23
+ - What units, locale, time zone, standard, or policy applies?
24
+ - What should happen when information is missing?
25
+
26
+ ## 4. Workflow and decision rules
27
+
28
+ - Which steps must happen before others?
29
+ - Where are the branch points?
30
+ - What are stop conditions?
31
+ - Which rules should be deterministic rather than left to judgment?
32
+
33
+ ## 5. Tools and authority
34
+
35
+ - Which tools are required?
36
+ - Which operations are read-only vs write actions?
37
+ - Where is dry-run needed?
38
+ - What needs explicit approval?
39
+
40
+ ## 6. Outputs and interfaces
41
+
42
+ - What artifact should be produced?
43
+ - What template or schema should be followed?
44
+ - What links, citations, IDs, or files must be included?
45
+ - Who consumes the output next?
46
+
47
+ ## 7. Quality and evaluation
48
+
49
+ - What does success mean?
50
+ - What validation cases prove the change?
51
+ - What regression case prevents old behavior from breaking?
52
+ - Is there a deterministic verifier or checklist?
53
+
54
+ ## 8. Safety, privacy, and policy
55
+
56
+ - What sensitive data could appear?
57
+ - What regulated advice or consequential decision is involved?
58
+ - What needs consent, review, or audit trail?
59
+ - What data should be minimized, redacted, or excluded?
60
+
61
+ ## 9. Failure and recovery
62
+
63
+ - What should the skill do when blocked?
64
+ - What retries are safe?
65
+ - What rollback or cleanup path is required?
66
+ - What partial result is useful?
67
+
68
+ ## 10. Maintainability
69
+
70
+ - Is the core `SKILL.md` concise?
71
+ - Should details move into references or scripts?
72
+ - Are examples realistic?
73
+ - Is there a changelog and version note?