@templmf/temp-solf-lmf 0.0.31 → 0.0.33

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 (43) hide show
  1. package/mcp-builder/LICENSE.txt +202 -0
  2. package/mcp-builder/SKILL.md +236 -0
  3. package/mcp-builder/reference/evaluation.md +602 -0
  4. package/mcp-builder/reference/mcp_best_practices.md +249 -0
  5. package/mcp-builder/reference/node_mcp_server.md +970 -0
  6. package/mcp-builder/reference/python_mcp_server.md +719 -0
  7. package/mcp-builder/scripts/connections.py +151 -0
  8. package/mcp-builder/scripts/evaluation.py +373 -0
  9. package/mcp-builder/scripts/example_evaluation.xml +22 -0
  10. package/mcp-builder/scripts/requirements.txt +2 -0
  11. package/package.json +1 -1
  12. package/skill-creator/LICENSE.txt +202 -0
  13. package/skill-creator/SKILL.md +479 -0
  14. package/skill-creator/agents/analyzer.md +274 -0
  15. package/skill-creator/agents/comparator.md +202 -0
  16. package/skill-creator/agents/grader.md +223 -0
  17. package/skill-creator/assets/eval_review.html +146 -0
  18. package/skill-creator/eval-viewer/generate_review.py +471 -0
  19. package/skill-creator/eval-viewer/viewer.html +1325 -0
  20. package/skill-creator/references/schemas.md +430 -0
  21. package/skill-creator/scripts/__init__.py +0 -0
  22. package/skill-creator/scripts/aggregate_benchmark.py +401 -0
  23. package/skill-creator/scripts/generate_report.py +326 -0
  24. package/skill-creator/scripts/improve_description.py +248 -0
  25. package/skill-creator/scripts/package_skill.py +136 -0
  26. package/skill-creator/scripts/quick_validate.py +103 -0
  27. package/skill-creator/scripts/run_eval.py +310 -0
  28. package/skill-creator/scripts/run_loop.py +332 -0
  29. package/skill-creator/scripts/utils.py +47 -0
  30. package/webapp-testing/LICENSE.txt +202 -0
  31. package/webapp-testing/SKILL.md +96 -0
  32. package/webapp-testing/examples/console_logging.py +35 -0
  33. package/webapp-testing/examples/element_discovery.py +40 -0
  34. package/webapp-testing/examples/static_html_automation.py +33 -0
  35. package/webapp-testing/scripts/with_server.py +106 -0
  36. package/rules-skill-writer/1_workflow.xml +0 -116
  37. package/rules-skill-writer/2_best_practices.xml +0 -94
  38. package/rules-skill-writer/3_common_patterns.xml +0 -100
  39. package/rules-skill-writer/4_decision_guidance.xml +0 -78
  40. package/rules-skill-writer/5_examples.xml +0 -77
  41. package/rules-skill-writer/6_error_handling.xml +0 -17
  42. package/rules-skill-writer/7_communication.xml +0 -15
  43. package/rules-skill-writer/8_tool_usage.xml +0 -30
@@ -1,77 +0,0 @@
1
- <complete_examples>
2
- <example name="create_project_mode_specific_skill">
3
- <scenario>Create a new mode-specific project skill to standardize a workflow in one mode.</scenario>
4
- <workflow>
5
- <step number="1">
6
- <description>Confirm scope and name</description>
7
- <expected_outcome>Target path is ./.roo/skills-&lt;mode&gt;/&lt;skill-name&gt;/SKILL.md and the name is spec-compliant</expected_outcome>
8
- </step>
9
- <step number="2">
10
- <description>Create folder and SKILL.md with required frontmatter and clear sections</description>
11
- <expected_outcome>Skill is discoverable and has actionable instructions</expected_outcome>
12
- </step>
13
- <step number="3">
14
- <description>Validate name/description constraints and directory-name match</description>
15
- <expected_outcome>Spec-compliant frontmatter</expected_outcome>
16
- </step>
17
- </workflow>
18
- </example>
19
-
20
- <example name="create_multi_file_skill_with_references_and_scripts">
21
- <scenario>
22
- Create a project skill that includes an entrypoint SKILL.md plus reference material and a validation script.
23
- The goal is progressive disclosure: only read references when needed, and execute scripts for deterministic checks.
24
- </scenario>
25
- <workflow>
26
- <step number="1">
27
- <description>Choose structure based on fragility and size</description>
28
- <expected_outcome>
29
- Use SKILL.md as the entrypoint, references/ for long-lived guidance, and scripts/ for validation/automation.
30
- </expected_outcome>
31
- </step>
32
-
33
- <step number="2">
34
- <description>Draft SKILL.md as navigation (not a dumping ground)</description>
35
- <expected_outcome>
36
- SKILL.md contains:
37
- - Frontmatter (name/description)
38
- - When to use / When NOT to use
39
- - A numbered workflow with explicit "read this file when..." pointers
40
- - A "Files" section that links one level deep:
41
- - references/SCHEMA.md (read when needing field definitions)
42
- - references/TROUBLESHOOTING.md (read when validation fails)
43
- - scripts/validate_input.(sh|js|py) (execute to validate intermediate outputs)
44
- </expected_outcome>
45
- </step>
46
-
47
- <step number="3">
48
- <description>Create references with table-of-contents style headings</description>
49
- <expected_outcome>
50
- Each references/*.md file starts with a short contents list so the agent can jump to relevant sections.
51
- </expected_outcome>
52
- </step>
53
-
54
- <step number="4">
55
- <description>Make script intent explicit</description>
56
- <expected_outcome>
57
- SKILL.md clearly states whether the script should be executed (preferred) or read as reference.
58
- The script produces verifiable output (e.g., JSON report or "OK"/error list) to support feedback loops.
59
- </expected_outcome>
60
- </step>
61
- </workflow>
62
- </example>
63
-
64
- <example name="edit_global_skill_with_confirmation">
65
- <scenario>Edit an existing global skill used across multiple projects.</scenario>
66
- <workflow>
67
- <step number="1">
68
- <description>Locate the global skill path and read SKILL.md</description>
69
- <expected_outcome>Exact file to change is known</expected_outcome>
70
- </step>
71
- <step number="2">
72
- <description>Apply the minimal edit and re-check frontmatter constraints</description>
73
- <expected_outcome>Global skill updated safely and remains spec-compliant</expected_outcome>
74
- </step>
75
- </workflow>
76
- </example>
77
- </complete_examples>
@@ -1,17 +0,0 @@
1
- <error_handling>
2
- <error_case name="name_mismatch">
3
- <symptom>Frontmatter name does not match directory name</symptom>
4
- <response>
5
- <step>Do not proceed with additional edits until the mismatch is resolved</step>
6
- <step>Prefer renaming the directory to match the intended canonical name (or update frontmatter), but confirm with the user if the skill is already in use</step>
7
- </response>
8
- </error_case>
9
-
10
- <error_case name="invalid_name_format">
11
- <symptom>Name contains uppercase, underscores, or consecutive hyphens</symptom>
12
- <response>
13
- <step>Propose a corrected name and confirm before applying renames</step>
14
- <step>Explain that renames may be breaking if other tooling references the skill name</step>
15
- </response>
16
- </error_case>
17
- </error_handling>
@@ -1,15 +0,0 @@
1
- <communication_guidelines>
2
- <tone_and_style>
3
- <principle>Be direct and technical; avoid conversational filler.</principle>
4
- <principle>Use short progress updates and concrete file paths.</principle>
5
- </tone_and_style>
6
-
7
- <questions>
8
- <rule>Ask questions only when scope, target location, or breaking changes are ambiguous.</rule>
9
- <rule>When asking, provide 2–4 actionable options.</rule>
10
- </questions>
11
-
12
- <completion_messages>
13
- <rule>Summarize the skill paths created/edited and confirm spec compliance checks performed.</rule>
14
- </completion_messages>
15
- </communication_guidelines>
@@ -1,30 +0,0 @@
1
- <tool_guidance_guide>
2
- <tool_priorities>
3
- <priority level="1">
4
- <tool>List directories/files</tool>
5
- <when>Confirm whether skills already exist and where they should live</when>
6
- <why>Avoid duplicate skills and ensure correct placement (project vs global; generic vs mode-specific)</why>
7
- </priority>
8
-
9
- <priority level="2">
10
- <tool>Open/read files</tool>
11
- <when>Inspect existing SKILL.md frontmatter and instructions before editing</when>
12
- <why>Prevents breaking the name/description constraints and preserves intent</why>
13
- </priority>
14
-
15
- <priority level="3">
16
- <tool>Edit files (project skills only)</tool>
17
- <when>Creating or updating files under .roo/skills* inside the workspace</when>
18
- <why>Edits are auditable and covered by file restrictions</why>
19
- </priority>
20
-
21
- <priority level="4">
22
- <tool>Command execution</tool>
23
- <when>
24
- - Reading global skills under <home>/.roo/skills*
25
- - Creating/updating global skills under <home>/.roo/skills*
26
- </when>
27
- <why>Global skills are outside the workspace; command execution is required for access</why>
28
- </priority>
29
- </tool_priorities>
30
- </tool_guidance_guide>