pi-cicd 1.0.1 → 1.0.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 CHANGED
@@ -1,19 +1,15 @@
1
1
  # Changelog
2
2
 
3
- ## 0.4.1 (2026-05-13)
3
+ ## 1.0.2 (2026-05-13)
4
4
 
5
- ### Added
6
- - Comprehensive documentation
7
- - Improved canary deployment
5
+ ### Fixed
6
+ - Add proper peerDependencies for @earendil-works/pi-coding-agent
7
+ - Add tsconfig.json for TypeScript support
8
8
 
9
- ## 0.4.0 (2026-05-12)
9
+ ## 1.0.1 (2026-05-13)
10
10
 
11
11
  ### Added
12
- - Pipeline Orchestration
13
- - Headless Mode with exit codes
14
- - Canary Deployments
15
- - Landing Queue
16
- - Event Streaming
12
+ - Comprehensive documentation
17
13
 
18
- ## 0.3.0 (Earlier)
14
+ ## 1.0.0 (Earlier)
19
15
  - Initial release
@@ -0,0 +1,22 @@
1
+ # Architecture
2
+
3
+ ## Structure
4
+
5
+ ```
6
+ pi-cicd/
7
+ ├── src/
8
+ │ ├── ci/ # CI integration
9
+ │ ├── deploy/ # Deployment strategies
10
+ │ ├── release/ # Release management
11
+ │ └── headless/ # Headless mode
12
+ ├── skills/
13
+ └── test/unit/
14
+ ```
15
+
16
+ ## Core Components
17
+
18
+ | Component | Purpose |
19
+ | --- | --- |
20
+ | CI Pipeline | GitHub Actions, GitLab, Jenkins |
21
+ | Deploy | Canary, blue-green, rolling |
22
+ | Release | Changelog, versioning |
@@ -0,0 +1,20 @@
1
+ # Feature Intake
2
+
3
+ ## Lanes
4
+
5
+ ### Tiny
6
+ Docs or narrow edits.
7
+
8
+ ### Normal
9
+ Story-sized behavior with bounded scope.
10
+
11
+ ### High-Risk
12
+ Deployment or breaking changes.
13
+
14
+ ## Risk Checklist
15
+
16
+ | Risk flag | Applies when |
17
+ | --- | --- |
18
+ | Deploy strategy | Changes deployment logic |
19
+ | Breaking change | Could break pipelines |
20
+ | New CI tool | Adding new CI integration |
@@ -0,0 +1,18 @@
1
+ # Harness
2
+
3
+ pi-cicd provides CI/CD pipeline and deployment integration.
4
+
5
+ ## Input Types
6
+
7
+ | Type | Use when | Typical artifact |
8
+ | --- | --- | --- |
9
+ | New deploy | Adding deployment strategy | Story |
10
+ | CI integration | Pipeline tool changes | Story |
11
+ | Harness | Process improvements | Backlog |
12
+
13
+ ## Validation Ladder
14
+
15
+ ```text
16
+ validate:quick
17
+ format, lint, typecheck, unit tests
18
+ ```
@@ -0,0 +1,14 @@
1
+ # Harness Backlog
2
+
3
+ ## Proposed
4
+
5
+ | ID | Description | Priority |
6
+ | --- | --- | --- |
7
+ | HB-001 | Add Kubernetes deploy | medium |
8
+ | HB-002 | Add more CI tools | low |
9
+
10
+ ## Completed
11
+
12
+ | ID | Completed |
13
+ | --- | --- |
14
+ | HB-000 | 2026-05-13 |
@@ -0,0 +1,18 @@
1
+ # Test Matrix
2
+
3
+ ## Matrix
4
+
5
+ | Story | Tool/Feature | Unit | Integration | Status |
6
+ | --- | --- | --- | --- | --- |
7
+ | US-001 | ci_status tool | yes | no | implemented |
8
+ | US-002 | deploy_strategy tool | yes | no | implemented |
9
+ | US-003 | release_notes tool | yes | no | implemented |
10
+ | US-004 | headless_mode | yes | no | implemented |
11
+
12
+ ## Commands
13
+
14
+ ```bash
15
+ npm test
16
+ npm run lint
17
+ npx tsc --noEmit
18
+ ```
@@ -0,0 +1,18 @@
1
+ # 0001 CI/CD Architecture
2
+
3
+ Date: 2026-05-13
4
+
5
+ ## Status
6
+
7
+ Accepted
8
+
9
+ ## Decision
10
+
11
+ Support multiple CI tools with unified interface.
12
+ Focus on GitHub Actions first.
13
+
14
+ ## Consequences
15
+
16
+ Positive:
17
+ - Works with existing pipelines
18
+ - Easy to extend
@@ -0,0 +1,16 @@
1
+ # Deployment Contracts
2
+
3
+ ## Deploy Strategies
4
+
5
+ | Strategy | Purpose | Risk |
6
+ | --- | --- | --- |
7
+ | Canary | Gradual rollout | Low |
8
+ | Blue-Green | Instant switch | Medium |
9
+ | Rolling | Incremental | Low |
10
+
11
+ ## CI Integration
12
+
13
+ Supports:
14
+ - GitHub Actions
15
+ - GitLab CI
16
+ - Jenkins (planned)
@@ -0,0 +1,23 @@
1
+ # US-XXX Story Title
2
+
3
+ ## Status
4
+
5
+ planned
6
+
7
+ ## Lane
8
+
9
+ tiny | normal | high-risk
10
+
11
+ ## Product Contract
12
+
13
+ Describe behavior.
14
+
15
+ ## Validation
16
+
17
+ | Layer | Proof |
18
+ | --- | --- |
19
+ | Unit | |
20
+
21
+ ## Evidence
22
+
23
+ Add after validation.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pi-cicd",
3
- "version": "1.0.1",
3
+ "version": "1.0.3",
4
4
  "description": "Extension for Pi coding agent",
5
5
  "type": "module",
6
6
  "main": "./index.ts",
@@ -36,6 +36,7 @@
36
36
  "license": "MIT",
37
37
  "repository": "https://github.com/baphuongna/pi-cicd",
38
38
  "peerDependencies": {
39
- "typescript": "^5.0.0"
39
+ "typescript": "^5.0.0",
40
+ "@earendil-works/pi-coding-agent": ">=0.73.0"
40
41
  }
41
42
  }