@orgloop/module-engineering 0.1.0 → 0.1.2
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 +64 -0
- package/package.json +1 -1
package/README.md
ADDED
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
# @orgloop/module-engineering
|
|
2
|
+
|
|
3
|
+
Engineering organization workflow module -- PR review, CI failure triage, Linear ticket management, and Claude Code supervision. Wires GitHub, Linear, and Claude Code sources to an OpenClaw agent actor.
|
|
4
|
+
|
|
5
|
+
## Install
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
orgloop add module engineering
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## What's Included
|
|
12
|
+
|
|
13
|
+
**Sources (3):**
|
|
14
|
+
- **github** -- GitHub repository events (PR reviews, comments, CI failures, merges)
|
|
15
|
+
- **linear** -- Linear project tracking events (optional, skipped if unconfigured)
|
|
16
|
+
- **claude-code** -- Claude Code session exit events (optional, skipped if unconfigured)
|
|
17
|
+
|
|
18
|
+
**Actors (1):**
|
|
19
|
+
- **openclaw-engineering-agent** -- OpenClaw agent for executing engineering workflows
|
|
20
|
+
|
|
21
|
+
**Routes (5):**
|
|
22
|
+
- **pr-review** -- PR review submitted: address feedback
|
|
23
|
+
- **pr-comment** -- PR review comment: respond to inline feedback
|
|
24
|
+
- **ci-failure** -- CI workflow failed: diagnose and fix
|
|
25
|
+
- **linear-triage** -- Linear issue updated: triage and act
|
|
26
|
+
- **claude-code-supervisor** -- Claude Code session ended: review and decide next action
|
|
27
|
+
|
|
28
|
+
**Transforms (3):**
|
|
29
|
+
- **drop-bot-noise** -- Filter out events authored by bots
|
|
30
|
+
- **my-notifications** -- Keep only events involving watched GitHub accounts (`GITHUB_WATCHED`)
|
|
31
|
+
- **dedup** -- Deduplicate events within a 10-minute window
|
|
32
|
+
|
|
33
|
+
**SOPs (3):** `pr-review.md`, `ci-failure.md`, `linear-ticket.md`
|
|
34
|
+
|
|
35
|
+
**Loggers (1):** File logger writing JSONL to `~/.orgloop/logs/orgloop.log`
|
|
36
|
+
|
|
37
|
+
## Parameters
|
|
38
|
+
|
|
39
|
+
| Parameter | Required | Default | Description |
|
|
40
|
+
|-----------|----------|---------|-------------|
|
|
41
|
+
| `github_source` | yes | `github` | Name of your GitHub source connector |
|
|
42
|
+
| `linear_source` | no | `linear` | Name of your Linear source connector |
|
|
43
|
+
| `claude_code_source` | no | `claude-code` | Name of your Claude Code source connector |
|
|
44
|
+
| `agent_actor` | yes | `openclaw-engineering-agent` | Name of your agent actor |
|
|
45
|
+
|
|
46
|
+
## Required Credentials
|
|
47
|
+
|
|
48
|
+
| Variable | Required | Description |
|
|
49
|
+
|----------|----------|-------------|
|
|
50
|
+
| `GITHUB_TOKEN` | yes | GitHub personal access token (repo scope) |
|
|
51
|
+
| `GITHUB_REPO` | yes | GitHub repository (owner/repo) |
|
|
52
|
+
| `GITHUB_WATCHED` | yes | Comma-separated GitHub usernames to watch |
|
|
53
|
+
| `OPENCLAW_WEBHOOK_TOKEN` | yes | OpenClaw webhook authentication token |
|
|
54
|
+
| `OPENCLAW_AGENT_ID` | yes | OpenClaw agent ID |
|
|
55
|
+
| `LINEAR_API_KEY` | no | Linear API key |
|
|
56
|
+
| `LINEAR_TEAM_KEY` | no | Linear team key |
|
|
57
|
+
|
|
58
|
+
## Documentation
|
|
59
|
+
|
|
60
|
+
Full documentation at [orgloop.ai](https://orgloop.ai)
|
|
61
|
+
|
|
62
|
+
## License
|
|
63
|
+
|
|
64
|
+
MIT
|
package/package.json
CHANGED