Skip to content

Commit 1461ec6

Browse files
committed
Standardize skill repository layout
1 parent 2941d2b commit 1461ec6

4 files changed

Lines changed: 39 additions & 0 deletions

File tree

.gitignore

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,20 @@ venv/
66
.env
77
.env.*
88
!/.env.example
9+
10+
# Shared skill layout ignores
11+
*$py.class
12+
Thumbs.db
13+
desktop.ini
14+
.mypy_cache/
15+
.pytest_cache/
16+
.ruff_cache/
17+
env/
18+
ENV/
19+
!.env.example
20+
secrets.json
21+
*_secret.ini
22+
*_local.ini
23+
preview/
24+
output/
25+
*.tmp

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,9 @@ Part of the CompleteTech LLC agentic services skill library. This skill supports
2424

2525
## Workflow Diagram
2626

27+
Source: [assets/diagrams/workflow.mmd](assets/diagrams/workflow.mmd).
28+
29+
2730
```mermaid
2831
flowchart LR
2932
A[Approved scope] --> B[Kickoff and access]

assets/diagrams/workflow.mmd

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
flowchart LR
2+
A[Approved scope] --> B[Kickoff and access]
3+
B --> C[Project controls]
4+
C --> D[Prototype and evaluation]
5+
D --> E{Acceptance ready?}
6+
E -->|No| F[Remediation and change control]
7+
F --> C
8+
E -->|Yes| G[Launch, support, and handoff]
9+
classDef source fill:#eef6ff,stroke:#3778c2,color:#102a43;
10+
classDef gate fill:#fff7e6,stroke:#c97a12,color:#3d2600;
11+
classDef output fill:#eefaf0,stroke:#2f8f46,color:#12351d;
12+
class A,B,C,D source;
13+
class E gate;
14+
class F,G output;

examples/README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Examples
2+
3+
This directory is reserved for runnable example inputs, overrides, or notes for this skill.
4+
5+
Rendered demonstration artifacts live under `assets/examples/` so README previews and packaged outputs stay close to the visual assets they reference.

0 commit comments

Comments
 (0)