geeto 0.11.0 → 0.13.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 (69) hide show
  1. package/README.md +31 -7
  2. package/lib/api/codex-sdk.d.ts.map +1 -1
  3. package/lib/api/codex-sdk.js +2 -2
  4. package/lib/api/codex-sdk.js.map +1 -1
  5. package/lib/api/copilot-sdk.d.ts.map +1 -1
  6. package/lib/api/copilot-sdk.js +2 -2
  7. package/lib/api/copilot-sdk.js.map +1 -1
  8. package/lib/api/gemini-sdk.d.ts.map +1 -1
  9. package/lib/api/gemini-sdk.js +2 -2
  10. package/lib/api/gemini-sdk.js.map +1 -1
  11. package/lib/api/github.d.ts +14 -0
  12. package/lib/api/github.d.ts.map +1 -1
  13. package/lib/api/github.js +72 -0
  14. package/lib/api/github.js.map +1 -1
  15. package/lib/api/gitlab.d.ts +18 -1
  16. package/lib/api/gitlab.d.ts.map +1 -1
  17. package/lib/api/gitlab.js +73 -0
  18. package/lib/api/gitlab.js.map +1 -1
  19. package/lib/api/groq-sdk.d.ts.map +1 -1
  20. package/lib/api/groq-sdk.js +2 -2
  21. package/lib/api/groq-sdk.js.map +1 -1
  22. package/lib/api/openrouter-sdk.d.ts.map +1 -1
  23. package/lib/api/openrouter-sdk.js +2 -2
  24. package/lib/api/openrouter-sdk.js.map +1 -1
  25. package/lib/api/platform.d.ts +5 -0
  26. package/lib/api/platform.d.ts.map +1 -1
  27. package/lib/api/platform.js +56 -2
  28. package/lib/api/platform.js.map +1 -1
  29. package/lib/index.js +18 -0
  30. package/lib/index.js.map +1 -1
  31. package/lib/types/index.d.ts +9 -0
  32. package/lib/types/index.d.ts.map +1 -1
  33. package/lib/utils/ai-text.d.ts +4 -0
  34. package/lib/utils/ai-text.d.ts.map +1 -1
  35. package/lib/utils/ai-text.js +27 -0
  36. package/lib/utils/ai-text.js.map +1 -1
  37. package/lib/utils/config.d.ts +8 -1
  38. package/lib/utils/config.d.ts.map +1 -1
  39. package/lib/utils/config.js +46 -1
  40. package/lib/utils/config.js.map +1 -1
  41. package/lib/utils/git.js +2 -2
  42. package/lib/utils/git.js.map +1 -1
  43. package/lib/utils/prompts-embedded.d.ts.map +1 -1
  44. package/lib/utils/prompts-embedded.js +38 -4
  45. package/lib/utils/prompts-embedded.js.map +1 -1
  46. package/lib/version.d.ts +1 -1
  47. package/lib/version.js +1 -1
  48. package/lib/workflows/branch.d.ts.map +1 -1
  49. package/lib/workflows/branch.js +1 -12
  50. package/lib/workflows/branch.js.map +1 -1
  51. package/lib/workflows/dry-run.d.ts.map +1 -1
  52. package/lib/workflows/dry-run.js +10 -0
  53. package/lib/workflows/dry-run.js.map +1 -1
  54. package/lib/workflows/review-issue.d.ts +8 -0
  55. package/lib/workflows/review-issue.d.ts.map +1 -0
  56. package/lib/workflows/review-issue.js +214 -0
  57. package/lib/workflows/review-issue.js.map +1 -0
  58. package/lib/workflows/review-pr.d.ts +8 -0
  59. package/lib/workflows/review-pr.d.ts.map +1 -0
  60. package/lib/workflows/review-pr.js +220 -0
  61. package/lib/workflows/review-pr.js.map +1 -0
  62. package/lib/workflows/settings.d.ts.map +1 -1
  63. package/lib/workflows/settings.js +246 -40
  64. package/lib/workflows/settings.js.map +1 -1
  65. package/package.json +33 -22
  66. package/prompts/commit-message-prompt.md +9 -2
  67. package/prompts/issue-prompt-review.md +12 -0
  68. package/prompts/issue-review.with-context.prompt.yml +2 -2
  69. package/prompts/review-prompt.md +13 -0
@@ -0,0 +1,12 @@
1
+ Act as a project issue reviewer. Review the provided issue title and description/body.
2
+ Keep the tone natural, conversational, and direct, like a friendly project maintainer or senior engineer checking an issue submitted by a user. Avoid boilerplate structures, long greeting summaries, or repetitive list labels unless requested.
3
+
4
+ Perform the following assessment and provide a concise structured feedback to help triage:
5
+
6
+ 1. Identify/verify the issue category: bug, feature, docs, or usage. State it clearly, e.g. "I've labeled this as [category]. The team will review and follow up with next steps."
7
+ 2. For bugs: state severity (low/med/high) and check if reproduction steps are present or missing.
8
+ 3. Suggest 1-3 labels (e.g. bug, feature, improvement, triage).
9
+ 4. Suggest next steps or ask up to 3 questions if info is missing. State that we are waiting for the author or reviewer to reply to proceed.
10
+
11
+ Your feedback must be formatted in clean Markdown.
12
+ Start by thanking/greeting the user using their handle if available (e.g., "Thanks for opening this issue, @author!"). Keep it helpful and concise.
@@ -33,7 +33,7 @@ messages:
33
33
 
34
34
  For the given issue ({{input}}), perform the following checks and provide a concise structured output.
35
35
 
36
- 1) Categorize the issue as one of: `bug`, `feature request`, `docs`, `usage/help`, or `other`.
36
+ 1) Categorize the issue as one of: `bug`, `feature request`, `docs`, `usage/help`, or `other`. State it clearly, e.g. "I've labeled this as [category]. The team will review and follow up with next steps."
37
37
 
38
38
  2) For BUGs:
39
39
  - Determine severity: `critical` / `high` / `medium` / `low`.
@@ -49,7 +49,7 @@ messages:
49
49
 
50
50
  4) For ALL issues:
51
51
  - If relevant, extract a brief `How to use (from README):` block (2–6 commands) to help reproduce or test, but keep it short.
52
- - Ask up to 3 direct QUESTIONS if information is missing.
52
+ - Ask up to 3 direct QUESTIONS if information is missing. State that we are waiting for the author or reviewer to reply to proceed.
53
53
  - Suggest 1–3 short labels (single words) such as `bug`, `feature`, `docs`, `usage`, `help`, `tool`.
54
54
 
55
55
  5) Format output in the following structured sections (concise and clear):
@@ -0,0 +1,13 @@
1
+ Act as a code reviewer. Review the provided git diff for a Pull Request / Merge Request.
2
+ Start the review by mentioning the author using their handler (e.g. "Hi @author, ..."). Keep the tone natural, conversational, and direct, like a human senior engineer reviewing a teammate's PR. Avoid rigid academic formats, excessive robotic lists, or boilerplate summaries. Write clearly and concisely.
3
+
4
+ Focus on:
5
+
6
+ 1. Potential bugs, logic errors, and edge cases.
7
+ 2. Code quality, readability, maintainability, and clean code principles.
8
+ 3. Performance issues or unnecessary resource usage.
9
+ 4. Security vulnerabilities.
10
+
11
+ Provide constructive feedback. Group by files if appropriate.
12
+ Your output must be formatted in Markdown.
13
+ If the changes are good, praise the author and approve clearly.