agentic-sdlc 1.8.1 → 1.10.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.
|
@@ -14,6 +14,12 @@ Automates the process of reviewing changes, generating Conventional Commits mess
|
|
|
14
14
|
- You need to generate a structured commit message.
|
|
15
15
|
- You want a quick sanity check (lint/diff) before committing.
|
|
16
16
|
|
|
17
|
+
## Tool Maintenance
|
|
18
|
+
Before starting complex tasks, ensure your tools are up to date:
|
|
19
|
+
```bash
|
|
20
|
+
python tools/infrastructure/update/updater.py --check
|
|
21
|
+
```
|
|
22
|
+
|
|
17
23
|
## Workflow Steps
|
|
18
24
|
|
|
19
25
|
### 1. Check Status
|
|
@@ -141,6 +141,10 @@ git push && git push --tags
|
|
|
141
141
|
bun run release # Full release
|
|
142
142
|
```
|
|
143
143
|
|
|
144
|
+
- **Update Methods:**
|
|
145
|
+
- **NPM Update:** `npm update -g agentic-sdlc`
|
|
146
|
+
- **Source Update:** `python tools/infrastructure/update/updater.py`
|
|
147
|
+
|
|
144
148
|
- **CI/CD:** Can be triggered in GitHub Actions
|
|
145
149
|
|
|
146
150
|
- **Publish to NPM:** To publish to NPM, ensure you are logged in using `npm login` then run the release command with the --publish flag.
|
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,30 @@ All notable changes to this project will be documented in this file.
|
|
|
4
4
|
|
|
5
5
|
## [Unreleased]
|
|
6
6
|
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
## [1.10.0] - 2026-01-10 (Sprint 6)
|
|
10
|
+
|
|
11
|
+
### Added
|
|
12
|
+
- [Validator] enhance workflow compliance logic and multi-command support
|
|
13
|
+
- [Brain] implement workflow validator sub-agent
|
|
14
|
+
- [Telegram-File-Manager] implement onboarding flow and enhanced file preview
|
|
15
|
+
|
|
16
|
+
### Fixed
|
|
17
|
+
- [Workflow-Validator] update parser to handle markdown headers and fix imports
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
---
|
|
21
|
+
|
|
22
|
+
## [1.9.0] - 2026-01-10
|
|
23
|
+
|
|
24
|
+
### Added
|
|
25
|
+
- [Tools] add source update script and documentation
|
|
26
|
+
|
|
27
|
+
### Other
|
|
28
|
+
- fix (scripts): fix absolute path in pacpacke.json
|
|
29
|
+
|
|
30
|
+
|
|
7
31
|
---
|
|
8
32
|
|
|
9
33
|
## [1.8.1] - 2026-01-10 (Sprint 6)
|
package/README.md
CHANGED
|
@@ -27,14 +27,36 @@ At the core of Agentic SDLC is the **Brain** - an intelligent knowledge manageme
|
|
|
27
27
|
## ✨ Quick Start
|
|
28
28
|
|
|
29
29
|
### Installation
|
|
30
|
-
|
|
31
|
-
```bash
|
|
32
|
-
# Install globally
|
|
33
|
-
npm install -g agentic-sdlc
|
|
34
|
-
|
|
35
|
-
# Or with bun
|
|
36
|
-
bun install -g agentic-sdlc
|
|
37
|
-
```
|
|
30
|
+
|
|
31
|
+
```bash
|
|
32
|
+
# Install globally
|
|
33
|
+
npm install -g agentic-sdlc
|
|
34
|
+
|
|
35
|
+
# Or with bun
|
|
36
|
+
bun install -g agentic-sdlc
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
### Installation from Source (GitHub)
|
|
40
|
+
|
|
41
|
+
If you prefer to run directly from source or update frequently:
|
|
42
|
+
|
|
43
|
+
```bash
|
|
44
|
+
# Clone repository
|
|
45
|
+
git clone https://github.com/truongnat/agentic-sdlc.git
|
|
46
|
+
cd agentic-sdlc
|
|
47
|
+
|
|
48
|
+
# Install dependencies
|
|
49
|
+
bun install # or npm install
|
|
50
|
+
```
|
|
51
|
+
|
|
52
|
+
### keeping Updated
|
|
53
|
+
|
|
54
|
+
If you installed from source, use the built-in updater:
|
|
55
|
+
|
|
56
|
+
```bash
|
|
57
|
+
# Check and install updates
|
|
58
|
+
python tools/infrastructure/update/updater.py
|
|
59
|
+
```
|
|
38
60
|
|
|
39
61
|
### Create New Project
|
|
40
62
|
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
# Workflow Compliance Report
|
|
2
|
+
|
|
3
|
+
**Workflow:** `/commit`
|
|
4
|
+
**Execution Time:** 2026-01-10 17:18:37
|
|
5
|
+
**Duration:** 0.00s
|
|
6
|
+
**Compliance Score:** 100.0/100
|
|
7
|
+
**Status:** ✅ PASS
|
|
8
|
+
|
|
9
|
+
## 📊 Summary
|
|
10
|
+
|
|
11
|
+
Completed 6/6 steps (100.0% compliance). Excellent workflow adherence!
|
|
12
|
+
|
|
13
|
+
**Workflow Description:** Process - Automated Code Review and Commit
|
|
14
|
+
|
|
15
|
+
## ✓ Workflow Steps
|
|
16
|
+
|
|
17
|
+
- [✅] **Step 1:** Check Status
|
|
18
|
+
- ✓ Executed: `python tools/infrastructure/git/commit.py review`
|
|
19
|
+
- [✅] **Step 2:** Review Diff
|
|
20
|
+
- ✓ Executed: `git add .`
|
|
21
|
+
- ✓ Executed: `git diff --cached`
|
|
22
|
+
- [✅] **Step 3:** Generate Message
|
|
23
|
+
- ✓ Executed: `python tools/infrastructure/git/generate_msg.py`
|
|
24
|
+
- [✅] **Step 4:** Commit using Git
|
|
25
|
+
- ✓ Executed: `git commit -m "feat(validator): implement workflow validator"`
|
|
26
|
+
- [✅] **Step 5:** Verify
|
|
27
|
+
- ✓ Executed: `git log -1 --oneline`
|
|
28
|
+
- [✅] **Step 6:** Push Changes
|
|
29
|
+
- ✓ Executed: `git push`
|
|
30
|
+
|
|
31
|
+
## 📈 Metrics
|
|
32
|
+
|
|
33
|
+
| Metric | Value |
|
|
34
|
+
|--------|-------|
|
|
35
|
+
| **Total Steps** | 6 |
|
|
36
|
+
| **Completed** | 6 (100.0%) |
|
|
37
|
+
| **Skipped** | 0 (0.0%) |
|
|
38
|
+
| **Total Violations** | 0 |
|
|
39
|
+
| **Critical Issues** | 0 |
|
|
40
|
+
| **High Issues** | 0 |
|
|
41
|
+
| **Medium Issues** | 0 |
|
|
42
|
+
| **Low Issues** | 0 |
|
|
43
|
+
| **Compliance Score** | 100.0/100 |
|
|
44
|
+
|
|
45
|
+
## 🎯 Overall Assessment
|
|
46
|
+
|
|
47
|
+
**PASS** - Workflow completed successfully with excellent compliance!
|
|
48
|
+
|
|
49
|
+
---
|
|
50
|
+
|
|
51
|
+
*Report generated by Workflow Validator Sub-Agent*
|
|
52
|
+
*Part of the Agentic SDLC Brain System*
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agentic-sdlc",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.10.0",
|
|
4
4
|
"description": "Simulating a complete Software Development Lifecycle (SDLC) with specialized AI Agents.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"private": false,
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"projects/telegram-file-manager"
|
|
14
14
|
],
|
|
15
15
|
"bin": {
|
|
16
|
-
"agentic-sdlc": "
|
|
16
|
+
"agentic-sdlc": "bin/cli.js"
|
|
17
17
|
},
|
|
18
18
|
"scripts": {
|
|
19
19
|
"test": "pytest tests/ -v",
|