old-agentic-v1^2
Travis Fischer 2023-04-25 13:47:18 -07:00
commit 427b2783af
10 zmienionych plików z 227 dodań i 0 usunięć

1
.github/funding.yml vendored 100644
Wyświetl plik

@ -0,0 +1 @@
github: [transitive-bullshit]

51
.github/workflows/test.yml vendored 100644
Wyświetl plik

@ -0,0 +1,51 @@
name: CI
on: [push, pull_request]
jobs:
test:
name: Test Node.js ${{ matrix.node-version }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version:
- 19
- 18
- 16
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install pnpm
uses: pnpm/action-setup@v2
id: pnpm-install
with:
version: 8
run_install: false
- name: Get pnpm store directory
id: pnpm-cache
shell: bash
run: |
echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
- uses: actions/cache@v3
name: Setup pnpm cache
with:
path: ${{ steps.pnpm-cache.outputs.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Run test
run: pnpm run test

47
.gitignore vendored 100644
Wyświetl plik

@ -0,0 +1,47 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
*.swp
.idea
# dependencies
node_modules/
.pnp/
.pnp.js
# testing
/coverage
# next.js
.next/
out/
# production
build/
# misc
.DS_Store
*.pem
# debug
npm-debug.log*
yarn-debug.log*
yarn-error.log*
.pnpm-debug.log*
# local env files
.env*.local
# vercel
.vercel
# typescript
*.tsbuildinfo
next-env.d.ts
# local env files
.env
.env.local
.env.build
.env.development.local
.env.test.local
.env.production.local

Wyświetl plik

@ -0,0 +1,4 @@
#!/usr/bin/env sh
. "$(dirname -- "$0")/_/husky.sh"
npm run pre-commit

1
.npmrc 100644
Wyświetl plik

@ -0,0 +1 @@
enable-pre-post-scripts=true

6
.prettierignore 100644
Wyświetl plik

@ -0,0 +1,6 @@
.snapshots/
build/
dist/
node_modules/
.next/
.vercel/

16
.prettierrc.cjs 100644
Wyświetl plik

@ -0,0 +1,16 @@
module.exports = {
plugins: [require('@trivago/prettier-plugin-sort-imports')],
singleQuote: true,
jsxSingleQuote: true,
semi: false,
useTabs: false,
tabWidth: 2,
bracketSpacing: true,
bracketSameLine: false,
arrowParens: 'always',
trailingComma: 'none',
importOrder: ['^node:.*', '<THIRD_PARTY_MODULES>', '^(@/(.*)$)', '^[./]'],
importOrderSeparation: true,
importOrderSortSpecifiers: true,
importOrderGroupNamespaceSpecifiers: true
}

21
license 100644
Wyświetl plik

@ -0,0 +1,21 @@
MIT License
Copyright (c) 2023 Travis Fischer
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

58
package.json 100644
Wyświetl plik

@ -0,0 +1,58 @@
{
"name": "agentic",
"private": true,
"description": "TODO",
"author": "Travis Fischer <travis@transitivebullsh.it>",
"repository": "transitive-bullshit/agentic",
"license": "MIT",
"type": "module",
"engines": {
"node": ">=14"
},
"workspaces": [
"packages/*"
],
"scripts": {
"build": "run-s build:*",
"build:tsup": "lerna run build --no-private",
"build:tsc": "tsc --build",
"deploy": "lerna run deploy",
"clean": "del packages/*/build",
"prebuild": "run-s clean",
"prepare": "husky install",
"pre-commit": "lint-staged",
"pretest": "run-s build",
"test": "run-p test:*",
"test:prettier": "prettier '**/*.{js,jsx,ts,tsx}' --check"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.1.1",
"@types/node": "^18.15.13",
"del-cli": "^5.0.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.7",
"tsup": "^6.7.0",
"tsx": "^3.12.6",
"typescript": "^5.0.4"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write"
]
},
"keywords": [
"ai",
"agent",
"autogpt",
"agi",
"babyagi",
"llms",
"chatgpt",
"openai",
"openapi",
"guardrails",
"plugins"
]
}

22
readme.md 100644
Wyświetl plik

@ -0,0 +1,22 @@
<h1 align="center">Agentic</h1>
<p align="center">
TODO
</p>
<p align="center">
<a href="https://www.npmjs.com/package/agentic"><img alt="agentic NPM package" src="https://img.shields.io/npm/v/agentic.svg" /></a>
<a href="https://github.com/transitive-bullshit/agentic/actions/workflows/test.yml"><img alt="Build Status" src="https://github.com/transitive-bullshit/agentic/actions/workflows/test.yml/badge.svg" /></a>
<a href="https://github.com/transitive-bullshit/agentic/blob/main/license"><img alt="MIT License" src="https://img.shields.io/badge/license-MIT-blue" /></a>
<a href="https://prettier.io"><img alt="Prettier Code Formatting" src="https://img.shields.io/badge/code_style-prettier-brightgreen.svg" /></a>
</p>
## Intro
TODO
## License
MIT © [Travis Fischer](https://transitivebullsh.it)
If you found this project interesting, please consider [sponsoring me](https://github.com/sponsors/transitive-bullshit) or <a href="https://twitter.com/transitive_bs">following me on twitter <img src="https://storage.googleapis.com/saasify-assets/twitter-logo.svg" alt="twitter" height="24px" align="center"></a>