agileflow 3.4.1 → 3.4.3
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/CHANGELOG.md +10 -0
- package/README.md +2 -2
- package/lib/drivers/claude-driver.ts +1 -1
- package/lib/lazy-require.js +1 -1
- package/package.json +1 -1
- package/scripts/agent-loop.js +290 -230
- package/scripts/check-sessions.js +116 -0
- package/scripts/lib/audit-registry.js +36 -0
- package/scripts/lib/quality-gates.js +35 -8
- package/scripts/lib/signal-detectors.js +0 -13
- package/scripts/lib/team-events.js +1 -1
- package/scripts/lib/tmux-audit-monitor.js +2 -1
- package/scripts/lib/tmux-group-colors.js +2 -2
- package/scripts/spawn-audit-sessions.js +1 -1
- package/src/core/commands/ads/audit.md +84 -6
- package/src/core/commands/code/accessibility.md +22 -6
- package/src/core/commands/code/api.md +22 -6
- package/src/core/commands/code/architecture.md +22 -6
- package/src/core/commands/code/completeness.md +22 -6
- package/src/core/commands/code/legal.md +22 -6
- package/src/core/commands/code/logic.md +22 -6
- package/src/core/commands/code/performance.md +22 -6
- package/src/core/commands/code/security.md +22 -6
- package/src/core/commands/code/test.md +22 -6
- package/src/core/commands/ideate/features.md +5 -4
- package/src/core/commands/ideate/new.md +8 -7
- package/src/core/commands/seo/audit.md +78 -7
- package/lib/claude-cli-bridge.js +0 -215
- package/lib/dashboard-automations.js +0 -130
- package/lib/dashboard-git.js +0 -254
- package/lib/dashboard-inbox.js +0 -64
- package/lib/dashboard-protocol.js +0 -605
- package/lib/dashboard-server.js +0 -1296
- package/lib/dashboard-session.js +0 -136
- package/lib/dashboard-status.js +0 -72
- package/lib/dashboard-terminal.js +0 -354
- package/lib/dashboard-websocket.js +0 -88
- package/scripts/dashboard-serve.js +0 -336
- package/src/core/commands/serve.md +0 -127
- package/tools/cli/commands/serve.js +0 -492
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [3.4.3] - 2026-03-07
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
- Session monitor wrapper and quality-gates integration
|
|
14
|
+
|
|
15
|
+
## [3.4.2] - 2026-03-07
|
|
16
|
+
|
|
17
|
+
### Added
|
|
18
|
+
- DEPTH=ultradeep|extreme for SEO and Ads audit commands
|
|
19
|
+
|
|
10
20
|
## [3.4.1] - 2026-03-06
|
|
11
21
|
|
|
12
22
|
### Added
|
package/README.md
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
</p>
|
|
4
4
|
|
|
5
5
|
[](https://www.npmjs.com/package/agileflow)
|
|
6
|
-
[](https://docs.agileflow.projectquestorg.com/docs/commands)
|
|
7
7
|
[](https://docs.agileflow.projectquestorg.com/docs/agents)
|
|
8
8
|
[](https://docs.agileflow.projectquestorg.com/docs/features/skills)
|
|
9
9
|
|
|
@@ -54,7 +54,7 @@ Traditional project management tools create friction between planning and execut
|
|
|
54
54
|
|
|
55
55
|
| Component | Count | Description |
|
|
56
56
|
|-----------|-------|-------------|
|
|
57
|
-
| [Commands](https://docs.agileflow.projectquestorg.com/docs/commands) |
|
|
57
|
+
| [Commands](https://docs.agileflow.projectquestorg.com/docs/commands) | 142 | Slash commands for agile workflows |
|
|
58
58
|
| [Agents/Experts](https://docs.agileflow.projectquestorg.com/docs/agents) | 131 | Specialized agents with self-improving knowledge bases |
|
|
59
59
|
| [Skills](https://docs.agileflow.projectquestorg.com/docs/features/skills) | Dynamic | Browse and install from skills.sh marketplace via `/agileflow:skill:recommend` |
|
|
60
60
|
|
|
@@ -266,7 +266,7 @@ export class ClaudeDriver implements Driver {
|
|
|
266
266
|
}
|
|
267
267
|
|
|
268
268
|
// ============================================================================
|
|
269
|
-
// Claude Native Message Types
|
|
269
|
+
// Claude Native Message Types
|
|
270
270
|
// ============================================================================
|
|
271
271
|
|
|
272
272
|
export interface ClaudeNativeMessage {
|
package/lib/lazy-require.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* as hooks. When these scripts eagerly require() npm dependencies at module
|
|
6
6
|
* load time, they crash if the dependency isn't resolvable from the user's
|
|
7
7
|
* project directory. This utility standardizes the lazy-loading pattern used
|
|
8
|
-
* ad-hoc in yaml-utils.js
|
|
8
|
+
* ad-hoc in yaml-utils.js.
|
|
9
9
|
*
|
|
10
10
|
* Usage:
|
|
11
11
|
* const { lazyRequire } = require('./lazy-require');
|