juno-code 1.0.37 → 1.0.38
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.
package/dist/index.js
CHANGED
package/dist/index.mjs
CHANGED
|
@@ -493,7 +493,7 @@ Generating a Slack Bot Token:
|
|
|
493
493
|
Full tutorial: """ + SLACK_TOKEN_DOCS_URL + """
|
|
494
494
|
|
|
495
495
|
Example .env file:
|
|
496
|
-
SLACK_BOT_TOKEN=xoxb-
|
|
496
|
+
SLACK_BOT_TOKEN=xoxb-YOUR-BOT-TOKEN-HERE
|
|
497
497
|
SLACK_CHANNEL=bug-reports
|
|
498
498
|
CHECK_INTERVAL_SECONDS=120
|
|
499
499
|
LOG_LEVEL=INFO
|
|
@@ -71,7 +71,8 @@ def setup_logging(verbose: bool = False) -> None:
|
|
|
71
71
|
def get_kanban_tasks(
|
|
72
72
|
kanban_script: str,
|
|
73
73
|
tag: Optional[str] = None,
|
|
74
|
-
status: Optional[str] = None
|
|
74
|
+
status: Optional[str] = None,
|
|
75
|
+
limit: int = 10000
|
|
75
76
|
) -> List[Dict[str, Any]]:
|
|
76
77
|
"""
|
|
77
78
|
Get kanban tasks from the kanban.sh script.
|
|
@@ -80,11 +81,12 @@ def get_kanban_tasks(
|
|
|
80
81
|
kanban_script: Path to kanban.sh script
|
|
81
82
|
tag: Optional tag to filter by
|
|
82
83
|
status: Optional status to filter by
|
|
84
|
+
limit: Maximum number of tasks to retrieve (default: 10000 to ensure all tasks)
|
|
83
85
|
|
|
84
86
|
Returns:
|
|
85
87
|
List of task dicts
|
|
86
88
|
"""
|
|
87
|
-
cmd = [kanban_script, 'list']
|
|
89
|
+
cmd = [kanban_script, 'list', '--limit', str(limit)]
|
|
88
90
|
|
|
89
91
|
if tag:
|
|
90
92
|
cmd.extend(['--tag', tag])
|
|
@@ -460,7 +462,7 @@ Generating a Slack Bot Token:
|
|
|
460
462
|
Full tutorial: """ + SLACK_TOKEN_DOCS_URL + """
|
|
461
463
|
|
|
462
464
|
Example .env file:
|
|
463
|
-
SLACK_BOT_TOKEN=xoxb-
|
|
465
|
+
SLACK_BOT_TOKEN=xoxb-YOUR-BOT-TOKEN-HERE
|
|
464
466
|
LOG_LEVEL=INFO
|
|
465
467
|
""")
|
|
466
468
|
print("=" * 70 + "\n")
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "juno-code",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.38",
|
|
4
4
|
"description": "Ralph Wiggum meet Kanban! Ralph style execution for [Claude Code, Codex, Gemini, Cursor]. One task per iteration, automatic progress tracking, and git commits. Set it and let it run.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Ralph",
|