Skip to content

Commit a79ffb3

Browse files
author
Everything AI Maintainers
committed
Release Everything AI v0.2.0
0 parents  commit a79ffb3

21 files changed

Lines changed: 641 additions & 0 deletions
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
---
2+
name: Bug report
3+
about: Report confusing, unsafe, or incorrect Everything AI behavior
4+
title: "[Bug]: "
5+
labels: bug
6+
assignees: ""
7+
---
8+
9+
## What happened?
10+
11+
12+
## What did you expect?
13+
14+
15+
## Prompt or situation
16+
17+
18+
## Safety notes
19+
20+
Do not paste secrets, tokens, private logs, or sensitive data.
21+
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
name: Improvement
3+
about: Suggest a safer or more useful behavior
4+
title: "[Improvement]: "
5+
labels: enhancement
6+
assignees: ""
7+
---
8+
9+
## Improvement idea
10+
11+
12+
## Why it helps
13+
14+
15+
## Does it help non-technical users?
16+
17+
18+
## Any safety concern?
19+
20+

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
## What changed?
2+
3+
4+
## Why does this help non-technical users?
5+
6+
7+
## Safety check
8+
9+
- [ ] Does not save secrets
10+
- [ ] Does not save sensitive personal data
11+
- [ ] Does not treat untrusted file/web/tool output as user preference
12+
- [ ] Keeps questions low-pressure and plain-language
13+
- [ ] Reports gaps instead of faking completion
14+
15+
## Tests
16+
17+
- [ ] `python .\tests\test_everything_ai.py`
18+

.github/dependabot.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "github-actions"
4+
directory: "/"
5+
schedule:
6+
interval: "weekly"
7+
- package-ecosystem: "npm"
8+
directory: "/"
9+
schedule:
10+
interval: "weekly"
11+

.github/workflows/codeql.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: CodeQL
2+
3+
on:
4+
pull_request:
5+
push:
6+
branches: [main]
7+
schedule:
8+
- cron: "23 4 * * 1"
9+
10+
permissions:
11+
contents: read
12+
13+
jobs:
14+
analyze:
15+
runs-on: ubuntu-latest
16+
permissions:
17+
security-events: write
18+
packages: read
19+
actions: read
20+
contents: read
21+
steps:
22+
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10
23+
- uses: github/codeql-action/init@8aad20d150bbac5944a9f9d289da16a4b0d87c1e
24+
with:
25+
languages: javascript
26+
- uses: github/codeql-action/analyze@8aad20d150bbac5944a9f9d289da16a4b0d87c1e
27+

.github/workflows/scorecard.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: Scorecard
2+
3+
on:
4+
branch_protection_rule:
5+
workflow_dispatch:
6+
schedule:
7+
- cron: "31 3 * * 2"
8+
9+
permissions: read-all
10+
11+
jobs:
12+
analysis:
13+
runs-on: ubuntu-latest
14+
permissions:
15+
security-events: write
16+
id-token: write
17+
contents: read
18+
actions: read
19+
steps:
20+
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10
21+
with:
22+
persist-credentials: false
23+
- uses: ossf/scorecard-action@4eaacf0543bb3f2c246792bd56e8cdeffafb205a
24+
with:
25+
results_file: results.sarif
26+
results_format: sarif
27+
publish_results: true
28+
- uses: github/codeql-action/upload-sarif@8aad20d150bbac5944a9f9d289da16a4b0d87c1e
29+
with:
30+
sarif_file: results.sarif

.github/workflows/test.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Test
2+
3+
on:
4+
pull_request:
5+
push:
6+
branches: [main]
7+
8+
permissions:
9+
contents: read
10+
11+
jobs:
12+
test:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10
16+
- uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405
17+
with:
18+
python-version: "3.12"
19+
- uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e
20+
with:
21+
node-version: "22"
22+
- run: python tests/test_everything_ai.py
23+
- run: node scripts/install.js --dry-run

.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
.everything-ai/
2+
__pycache__/
3+
*.pyc
4+
.DS_Store
5+
Thumbs.db
6+

.npmignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
.everything-ai/
2+
.github/
3+
outputs/
4+
work/
5+
*.log

CODE_OF_CONDUCT.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# Code Of Conduct
2+
3+
Be respectful, patient, and clear.
4+
5+
This project is made for non-technical users. Do not mock people for not knowing technical terms.
6+
7+
Unacceptable behavior:
8+
9+
- harassment
10+
- personal attacks
11+
- sharing private information
12+
- pushing unsafe memory or observability behavior
13+
14+
Maintainers may remove comments, issues, or pull requests that make the project unsafe or hostile.
15+

0 commit comments

Comments
 (0)