clawflowbang 1.0.1 → 1.1.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.
- package/README.md +164 -49
- package/bin/clawflowhub.js +150 -62
- package/package.json +17 -5
- package/src/commands/create.js +286 -0
- package/src/commands/cron.js +78 -18
- package/src/commands/doctor.js +146 -0
- package/src/commands/explore.js +49 -0
- package/src/commands/init.js +3 -3
- package/src/commands/register.js +83 -0
- package/src/commands/update.js +35 -0
- package/src/core/ConfigManager.js +132 -132
- package/src/core/CronManager.js +245 -245
- package/src/core/Installer.js +226 -109
- package/src/core/OpenClawCLI.js +52 -7
- package/src/core/TerminalUI.js +10 -13
- package/.github/ISSUE_TEMPLATE/bug_report.md +0 -35
- package/.github/ISSUE_TEMPLATE/feature_request.md +0 -23
- package/.github/pull_request_template.md +0 -19
- package/CODE_OF_CONDUCT.md +0 -29
- package/SECURITY.md +0 -20
- package/SUPPORT.md +0 -21
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: Bug report
|
|
3
|
-
about: Report a reproducible problem
|
|
4
|
-
title: "[bug] "
|
|
5
|
-
labels: bug
|
|
6
|
-
assignees: ''
|
|
7
|
-
---
|
|
8
|
-
|
|
9
|
-
## Summary
|
|
10
|
-
|
|
11
|
-
Describe the problem clearly.
|
|
12
|
-
|
|
13
|
-
## Environment
|
|
14
|
-
|
|
15
|
-
- OS:
|
|
16
|
-
- Node.js version:
|
|
17
|
-
- CLI version (`clawflow --version`):
|
|
18
|
-
|
|
19
|
-
## Steps to Reproduce
|
|
20
|
-
|
|
21
|
-
1.
|
|
22
|
-
2.
|
|
23
|
-
3.
|
|
24
|
-
|
|
25
|
-
## Expected Behavior
|
|
26
|
-
|
|
27
|
-
What should happen.
|
|
28
|
-
|
|
29
|
-
## Actual Behavior
|
|
30
|
-
|
|
31
|
-
What actually happened.
|
|
32
|
-
|
|
33
|
-
## Logs / Output
|
|
34
|
-
|
|
35
|
-
Paste full command and error output.
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: Feature request
|
|
3
|
-
about: Suggest an improvement
|
|
4
|
-
title: "[feature] "
|
|
5
|
-
labels: enhancement
|
|
6
|
-
assignees: ''
|
|
7
|
-
---
|
|
8
|
-
|
|
9
|
-
## Problem
|
|
10
|
-
|
|
11
|
-
What problem are you trying to solve?
|
|
12
|
-
|
|
13
|
-
## Proposed Solution
|
|
14
|
-
|
|
15
|
-
Describe the behavior you want.
|
|
16
|
-
|
|
17
|
-
## Alternatives Considered
|
|
18
|
-
|
|
19
|
-
Other options you evaluated.
|
|
20
|
-
|
|
21
|
-
## Additional Context
|
|
22
|
-
|
|
23
|
-
Any examples, links, or screenshots.
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
## Summary
|
|
2
|
-
|
|
3
|
-
Explain what changed and why.
|
|
4
|
-
|
|
5
|
-
## Changes
|
|
6
|
-
|
|
7
|
-
-
|
|
8
|
-
|
|
9
|
-
## Validation
|
|
10
|
-
|
|
11
|
-
- [ ] `npm run lint`
|
|
12
|
-
- [ ] `npm test -- --runInBand`
|
|
13
|
-
- [ ] Manual test performed (if applicable)
|
|
14
|
-
|
|
15
|
-
## Checklist
|
|
16
|
-
|
|
17
|
-
- [ ] Backward compatibility considered
|
|
18
|
-
- [ ] Docs updated (README/CHANGELOG) if needed
|
|
19
|
-
- [ ] No secrets or local machine data committed
|
package/CODE_OF_CONDUCT.md
DELETED
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
# Code of Conduct
|
|
2
|
-
|
|
3
|
-
This project follows the Contributor Covenant.
|
|
4
|
-
|
|
5
|
-
## Our Pledge
|
|
6
|
-
|
|
7
|
-
We aim to provide a respectful, harassment-free experience for everyone.
|
|
8
|
-
|
|
9
|
-
## Expected Behavior
|
|
10
|
-
|
|
11
|
-
- Be respectful and constructive.
|
|
12
|
-
- Assume good intent.
|
|
13
|
-
- Focus on technical discussion and collaboration.
|
|
14
|
-
|
|
15
|
-
## Unacceptable Behavior
|
|
16
|
-
|
|
17
|
-
- Harassment, abuse, discrimination, or hate speech.
|
|
18
|
-
- Personal attacks or threats.
|
|
19
|
-
- Sharing private information without consent.
|
|
20
|
-
|
|
21
|
-
## Enforcement
|
|
22
|
-
|
|
23
|
-
Maintainers may edit/remove content and restrict participation for violations.
|
|
24
|
-
|
|
25
|
-
Report issues to: `maintainers@clawflow.dev`
|
|
26
|
-
|
|
27
|
-
## Attribution
|
|
28
|
-
|
|
29
|
-
Adapted from Contributor Covenant: https://www.contributor-covenant.org
|
package/SECURITY.md
DELETED
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
# Security Policy
|
|
2
|
-
|
|
3
|
-
## Supported Versions
|
|
4
|
-
|
|
5
|
-
The latest published version is supported for security fixes.
|
|
6
|
-
|
|
7
|
-
## Reporting a Vulnerability
|
|
8
|
-
|
|
9
|
-
Please do not open a public issue for security vulnerabilities.
|
|
10
|
-
|
|
11
|
-
Report privately to: `maintainers@clawflow.dev`
|
|
12
|
-
|
|
13
|
-
Include:
|
|
14
|
-
|
|
15
|
-
- Affected version
|
|
16
|
-
- Steps to reproduce
|
|
17
|
-
- Impact
|
|
18
|
-
- Suggested mitigation (if any)
|
|
19
|
-
|
|
20
|
-
We will acknowledge receipt and follow up as quickly as possible.
|
package/SUPPORT.md
DELETED
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
# Support
|
|
2
|
-
|
|
3
|
-
## Questions and Usage Help
|
|
4
|
-
|
|
5
|
-
- Open a GitHub Discussion (recommended for how-to questions)
|
|
6
|
-
- Open a GitHub Issue for bugs and feature requests
|
|
7
|
-
|
|
8
|
-
## Before Opening an Issue
|
|
9
|
-
|
|
10
|
-
- Confirm CLI version with `clawflow --version`
|
|
11
|
-
- Run `clawflow status`
|
|
12
|
-
- Include command used and full error output
|
|
13
|
-
- Include OS + Node.js version
|
|
14
|
-
|
|
15
|
-
## Scope
|
|
16
|
-
|
|
17
|
-
This project focuses on:
|
|
18
|
-
|
|
19
|
-
- OpenClaw skill installation orchestration
|
|
20
|
-
- Cron setup/management integration
|
|
21
|
-
- Package preset workflow
|