Skip to content

Commit d132c41

Browse files
committed
v1
Adding in v1 of project migrated from agentpatterns/craft
0 parents  commit d132c41

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

73 files changed

+10454
-0
lines changed

.claude-plugin/marketplace.json

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
{
2+
"name": "lightfactory",
3+
"owner": {
4+
"name": "Eric Olson"
5+
},
6+
"metadata": {
7+
"description": "Agentic engineering skills codifying patterns and best practices including TDD, harness engineering, refactoring, architecture patterns, and AI development workflows",
8+
"version": "1.13.0"
9+
},
10+
"plugins": [
11+
{
12+
"name": "praxis",
13+
"source": "./plugins/praxis",
14+
"description": "Agentic engineering skills codifying patterns and best practices including TDD, refactoring, architecture patterns, diagramming, scaffolding, and AI development workflows.",
15+
"version": "1.13.0",
16+
"author": {
17+
"name": "Eric Olson"
18+
},
19+
"repository": "https://github.com/agentpatterns/lightfactory",
20+
"category": "agentic-engineering"
21+
},
22+
{
23+
"name": "harness",
24+
"source": "./plugins/harness",
25+
"description": "Agentic engineering skills for harness engineering patterns and best practices including TDD, architecture patterns, scaffolding, and tool building.",
26+
"version": "1.13.0",
27+
"author": {
28+
"name": "Eric Olson"
29+
},
30+
"repository": "https://github.com/agentpatterns/lightfactory",
31+
"category": "harness-engineering"
32+
}
33+
]
34+
}
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: Bump marketplace versions
2+
3+
on:
4+
push:
5+
branches: [main]
6+
paths:
7+
- 'plugins/**'
8+
- '.claude-plugin/marketplace.json'
9+
10+
permissions:
11+
contents: write
12+
13+
jobs:
14+
bump:
15+
runs-on: ubuntu-latest
16+
steps:
17+
- uses: actions/checkout@v4
18+
19+
- name: Bump versions
20+
run: |
21+
chmod +x scripts/bump-versions.sh
22+
./scripts/bump-versions.sh
23+
24+
- name: Commit and push
25+
run: |
26+
git config user.name "github-actions[bot]"
27+
git config user.email "github-actions[bot]@users.noreply.github.com"
28+
git add .claude-plugin/marketplace.json
29+
git diff --staged --quiet && echo "No version changes" && exit 0
30+
git commit -m "Bump marketplace and plugin versions"
31+
git push

.gitignore

Lines changed: 87 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,87 @@
1+
# JavaScript/TypeScript
2+
node_modules/
3+
npm-debug.log*
4+
yarn-debug.log*
5+
yarn-error.log*
6+
.pnpm-debug.log*
7+
dist/
8+
build/
9+
*.tsbuildinfo
10+
.npm
11+
.eslintcache
12+
.yarn/cache
13+
.yarn/unplugged
14+
.yarn/build-state.yml
15+
.yarn/install-state.gz
16+
.pnp.*
17+
18+
# Python
19+
__pycache__/
20+
*.py[cod]
21+
*$py.class
22+
*.so
23+
.Python
24+
env/
25+
venv/
26+
ENV/
27+
build/
28+
develop-eggs/
29+
dist/
30+
downloads/
31+
eggs/
32+
.eggs/
33+
lib/
34+
lib64/
35+
parts/
36+
sdist/
37+
var/
38+
wheels/
39+
*.egg-info/
40+
.installed.cfg
41+
*.egg
42+
MANIFEST
43+
.pytest_cache/
44+
.coverage
45+
.coverage.*
46+
htmlcov/
47+
.tox/
48+
.hypothesis/
49+
*.cover
50+
.mypy_cache/
51+
.dmypy.json
52+
dmypy.json
53+
.pytype/
54+
.pyre/
55+
56+
# IntelliJ
57+
.idea/
58+
*.iml
59+
*.ipr
60+
*.iws
61+
out/
62+
63+
# Visual Studio
64+
.vs/
65+
*.suo
66+
*.user
67+
*.userosscache
68+
*.sln.docstates
69+
*.userprefs
70+
.vscode/
71+
72+
# Environment variables
73+
.env
74+
.env.local
75+
.env.*.local
76+
.envrc
77+
78+
# Claude Code
79+
.claude/scratch/
80+
81+
# Yaks (issue tracker read model)
82+
.yaks
83+
84+
# OS
85+
.DS_Store
86+
Thumbs.db
87+
playground/

0 commit comments

Comments
 (0)