Vant skill audit ci
Vant: Durable AI memory + cold storage + runtime for agents, with generational evolution, stored passively via GitHub. Built for long-running autonomous sessions, using file based persistence.
npx -y skills add dhaupin/vant --skill vant-skill-audit-ciAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 7 stars7 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Does CI work?
The file declares its own license as MIT. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.
SKILL.md
1.4 KB, as published. Nobody here has run it
CI Audit
Does CI work?
What To Check
1. Pipeline Exists
# Common CI files
ls .github/workflows/
ls .gitlab-ci.yml
ls Jenkinsfile
ls .circleci/config.yml
| File | CI |
|---|---|
| .github/workflows/*.yml | GitHub |
| .gitlab-ci.yml | GitLab |
| Jenkinsfile | Jenkins |
| .circleci/config.yml | Circle |
2. Pipeline Runs
# Check recent runs
gh run list
| Status | Meaning |
|---|---|
| ✓ success | Working |
| ✗ failure | Broken |
| ○ pending | Running |
3. Pipeline Steps
jobs:
build:
steps:
- run: npm test
- run: npm build
| Check | Issue |
|---|---|
| Tests run | No tests |
| Build runs | No build |
| Deploy runs | No deploy |
4. Caching
- uses: actions/cache@v3
with:
path: node_modules
| Check | Issue | Fix |
|---|---|---|
| No cache | Slow builds | Add cache |
| Cache all | Inefficient | Cache key |
Output
## CI Audit
### Pipeline
- [PRESENT/MISSING] File: [file]
- [PASS/FAIL] Last run: [status]
### Steps
- [YES/NO] Test
- [YES/NO] Build
- [YES/NO] Deploy
### Timing
- Test: [s]s
- Build: [s]s
- Total: [s]s
### Issues
- [list]
Role: CI Auditor
Input: Repository
Output: CI works?
Keep CI green.