├── .github ├── assets │ └── nefi.mp4 └── workflows │ └── release.yml ├── .gitignore ├── LICENSE ├── README.md └── apps ├── docs ├── .eslintrc.json ├── app │ ├── (home) │ │ ├── layout.tsx │ │ └── page.tsx │ ├── api │ │ └── search │ │ │ └── route.ts │ ├── clerk.tsx │ ├── docs │ │ ├── [[...slug]] │ │ │ └── page.tsx │ │ └── layout.tsx │ ├── global.css │ ├── icons │ │ ├── github.tsx │ │ └── x.tsx │ ├── layout.config.tsx │ ├── layout.tsx │ ├── opengraph-image.png │ ├── twitter-image.png │ └── video.tsx ├── bun.lock ├── content │ └── docs │ │ ├── development │ │ ├── index.mdx │ │ ├── meta.json │ │ └── reporting-an-issue.mdx │ │ └── usage │ │ ├── (glossary) │ │ └── imperative-mood.mdx │ │ ├── auth.mdx │ │ ├── command-parameters.mdx │ │ ├── file-modifier.mdx │ │ ├── git-operations.mdx │ │ ├── index.mdx │ │ ├── meta.json │ │ └── package-management.mdx ├── lib │ └── source.ts ├── middleware.ts ├── next.config.mjs ├── package.json ├── postcss.config.js ├── public │ ├── logo-no-bg-inverted.png │ ├── logo-no-bg.png │ ├── nefi-showcase.mp4 │ └── nefi-x-clerk.mp4 ├── source.config.ts ├── tailwind.config.js └── tsconfig.json └── nefi ├── .releaserc.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── assets └── nefi-heading.svg ├── bun.lock ├── env.d.ts ├── package.json ├── patches └── picocolors@1.1.1.patch ├── rspack.config.mjs ├── src ├── commands │ ├── agent │ │ ├── impl.ts │ │ └── index.ts │ └── test-xml │ │ └── impl.ts ├── helpers │ ├── env-loading.ts │ ├── history.ts │ ├── logger.ts │ ├── project-files.ts │ ├── rate-limit-retrying.ts │ ├── string.ts │ └── xml.ts ├── scripts-registry.ts ├── scripts │ ├── file-modifier.ts │ ├── git-operations.ts │ ├── interceptors │ │ ├── clerk.ts │ │ └── hello.interceptor.ts │ └── package-management.ts ├── start.ts └── types.ts └── tsconfig.json /.github/assets/nefi.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blazity/nefi/HEAD/.github/assets/nefi.mp4 -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blazity/nefi/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blazity/nefi/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | apps/nefi/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | apps/nefi/README.md -------------------------------------------------------------------------------- /apps/docs/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blazity/nefi/HEAD/apps/docs/.eslintrc.json -------------------------------------------------------------------------------- /apps/docs/app/(home)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blazity/nefi/HEAD/apps/docs/app/(home)/layout.tsx -------------------------------------------------------------------------------- /apps/docs/app/(home)/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blazity/nefi/HEAD/apps/docs/app/(home)/page.tsx -------------------------------------------------------------------------------- /apps/docs/app/api/search/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blazity/nefi/HEAD/apps/docs/app/api/search/route.ts -------------------------------------------------------------------------------- /apps/docs/app/clerk.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blazity/nefi/HEAD/apps/docs/app/clerk.tsx -------------------------------------------------------------------------------- /apps/docs/app/docs/[[...slug]]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blazity/nefi/HEAD/apps/docs/app/docs/[[...slug]]/page.tsx -------------------------------------------------------------------------------- /apps/docs/app/docs/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blazity/nefi/HEAD/apps/docs/app/docs/layout.tsx -------------------------------------------------------------------------------- /apps/docs/app/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blazity/nefi/HEAD/apps/docs/app/global.css -------------------------------------------------------------------------------- /apps/docs/app/icons/github.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blazity/nefi/HEAD/apps/docs/app/icons/github.tsx -------------------------------------------------------------------------------- /apps/docs/app/icons/x.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blazity/nefi/HEAD/apps/docs/app/icons/x.tsx -------------------------------------------------------------------------------- /apps/docs/app/layout.config.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blazity/nefi/HEAD/apps/docs/app/layout.config.tsx -------------------------------------------------------------------------------- /apps/docs/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blazity/nefi/HEAD/apps/docs/app/layout.tsx -------------------------------------------------------------------------------- /apps/docs/app/opengraph-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blazity/nefi/HEAD/apps/docs/app/opengraph-image.png -------------------------------------------------------------------------------- /apps/docs/app/twitter-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blazity/nefi/HEAD/apps/docs/app/twitter-image.png -------------------------------------------------------------------------------- /apps/docs/app/video.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blazity/nefi/HEAD/apps/docs/app/video.tsx -------------------------------------------------------------------------------- /apps/docs/bun.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blazity/nefi/HEAD/apps/docs/bun.lock -------------------------------------------------------------------------------- /apps/docs/content/docs/development/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blazity/nefi/HEAD/apps/docs/content/docs/development/index.mdx -------------------------------------------------------------------------------- /apps/docs/content/docs/development/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blazity/nefi/HEAD/apps/docs/content/docs/development/meta.json -------------------------------------------------------------------------------- /apps/docs/content/docs/development/reporting-an-issue.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blazity/nefi/HEAD/apps/docs/content/docs/development/reporting-an-issue.mdx -------------------------------------------------------------------------------- /apps/docs/content/docs/usage/(glossary)/imperative-mood.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blazity/nefi/HEAD/apps/docs/content/docs/usage/(glossary)/imperative-mood.mdx -------------------------------------------------------------------------------- /apps/docs/content/docs/usage/auth.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blazity/nefi/HEAD/apps/docs/content/docs/usage/auth.mdx -------------------------------------------------------------------------------- /apps/docs/content/docs/usage/command-parameters.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blazity/nefi/HEAD/apps/docs/content/docs/usage/command-parameters.mdx -------------------------------------------------------------------------------- /apps/docs/content/docs/usage/file-modifier.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blazity/nefi/HEAD/apps/docs/content/docs/usage/file-modifier.mdx -------------------------------------------------------------------------------- /apps/docs/content/docs/usage/git-operations.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blazity/nefi/HEAD/apps/docs/content/docs/usage/git-operations.mdx -------------------------------------------------------------------------------- /apps/docs/content/docs/usage/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blazity/nefi/HEAD/apps/docs/content/docs/usage/index.mdx -------------------------------------------------------------------------------- /apps/docs/content/docs/usage/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blazity/nefi/HEAD/apps/docs/content/docs/usage/meta.json -------------------------------------------------------------------------------- /apps/docs/content/docs/usage/package-management.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blazity/nefi/HEAD/apps/docs/content/docs/usage/package-management.mdx -------------------------------------------------------------------------------- /apps/docs/lib/source.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blazity/nefi/HEAD/apps/docs/lib/source.ts -------------------------------------------------------------------------------- /apps/docs/middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blazity/nefi/HEAD/apps/docs/middleware.ts -------------------------------------------------------------------------------- /apps/docs/next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blazity/nefi/HEAD/apps/docs/next.config.mjs -------------------------------------------------------------------------------- /apps/docs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blazity/nefi/HEAD/apps/docs/package.json -------------------------------------------------------------------------------- /apps/docs/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blazity/nefi/HEAD/apps/docs/postcss.config.js -------------------------------------------------------------------------------- /apps/docs/public/logo-no-bg-inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blazity/nefi/HEAD/apps/docs/public/logo-no-bg-inverted.png -------------------------------------------------------------------------------- /apps/docs/public/logo-no-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blazity/nefi/HEAD/apps/docs/public/logo-no-bg.png -------------------------------------------------------------------------------- /apps/docs/public/nefi-showcase.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blazity/nefi/HEAD/apps/docs/public/nefi-showcase.mp4 -------------------------------------------------------------------------------- /apps/docs/public/nefi-x-clerk.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blazity/nefi/HEAD/apps/docs/public/nefi-x-clerk.mp4 -------------------------------------------------------------------------------- /apps/docs/source.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blazity/nefi/HEAD/apps/docs/source.config.ts -------------------------------------------------------------------------------- /apps/docs/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blazity/nefi/HEAD/apps/docs/tailwind.config.js -------------------------------------------------------------------------------- /apps/docs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blazity/nefi/HEAD/apps/docs/tsconfig.json -------------------------------------------------------------------------------- /apps/nefi/.releaserc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blazity/nefi/HEAD/apps/nefi/.releaserc.json -------------------------------------------------------------------------------- /apps/nefi/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blazity/nefi/HEAD/apps/nefi/CHANGELOG.md -------------------------------------------------------------------------------- /apps/nefi/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blazity/nefi/HEAD/apps/nefi/LICENSE -------------------------------------------------------------------------------- /apps/nefi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blazity/nefi/HEAD/apps/nefi/README.md -------------------------------------------------------------------------------- /apps/nefi/assets/nefi-heading.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blazity/nefi/HEAD/apps/nefi/assets/nefi-heading.svg -------------------------------------------------------------------------------- /apps/nefi/bun.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blazity/nefi/HEAD/apps/nefi/bun.lock -------------------------------------------------------------------------------- /apps/nefi/env.d.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/nefi/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blazity/nefi/HEAD/apps/nefi/package.json -------------------------------------------------------------------------------- /apps/nefi/patches/picocolors@1.1.1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blazity/nefi/HEAD/apps/nefi/patches/picocolors@1.1.1.patch -------------------------------------------------------------------------------- /apps/nefi/rspack.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blazity/nefi/HEAD/apps/nefi/rspack.config.mjs -------------------------------------------------------------------------------- /apps/nefi/src/commands/agent/impl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blazity/nefi/HEAD/apps/nefi/src/commands/agent/impl.ts -------------------------------------------------------------------------------- /apps/nefi/src/commands/agent/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blazity/nefi/HEAD/apps/nefi/src/commands/agent/index.ts -------------------------------------------------------------------------------- /apps/nefi/src/commands/test-xml/impl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blazity/nefi/HEAD/apps/nefi/src/commands/test-xml/impl.ts -------------------------------------------------------------------------------- /apps/nefi/src/helpers/env-loading.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blazity/nefi/HEAD/apps/nefi/src/helpers/env-loading.ts -------------------------------------------------------------------------------- /apps/nefi/src/helpers/history.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blazity/nefi/HEAD/apps/nefi/src/helpers/history.ts -------------------------------------------------------------------------------- /apps/nefi/src/helpers/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blazity/nefi/HEAD/apps/nefi/src/helpers/logger.ts -------------------------------------------------------------------------------- /apps/nefi/src/helpers/project-files.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blazity/nefi/HEAD/apps/nefi/src/helpers/project-files.ts -------------------------------------------------------------------------------- /apps/nefi/src/helpers/rate-limit-retrying.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blazity/nefi/HEAD/apps/nefi/src/helpers/rate-limit-retrying.ts -------------------------------------------------------------------------------- /apps/nefi/src/helpers/string.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blazity/nefi/HEAD/apps/nefi/src/helpers/string.ts -------------------------------------------------------------------------------- /apps/nefi/src/helpers/xml.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blazity/nefi/HEAD/apps/nefi/src/helpers/xml.ts -------------------------------------------------------------------------------- /apps/nefi/src/scripts-registry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blazity/nefi/HEAD/apps/nefi/src/scripts-registry.ts -------------------------------------------------------------------------------- /apps/nefi/src/scripts/file-modifier.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blazity/nefi/HEAD/apps/nefi/src/scripts/file-modifier.ts -------------------------------------------------------------------------------- /apps/nefi/src/scripts/git-operations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blazity/nefi/HEAD/apps/nefi/src/scripts/git-operations.ts -------------------------------------------------------------------------------- /apps/nefi/src/scripts/interceptors/clerk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blazity/nefi/HEAD/apps/nefi/src/scripts/interceptors/clerk.ts -------------------------------------------------------------------------------- /apps/nefi/src/scripts/interceptors/hello.interceptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blazity/nefi/HEAD/apps/nefi/src/scripts/interceptors/hello.interceptor.ts -------------------------------------------------------------------------------- /apps/nefi/src/scripts/package-management.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blazity/nefi/HEAD/apps/nefi/src/scripts/package-management.ts -------------------------------------------------------------------------------- /apps/nefi/src/start.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blazity/nefi/HEAD/apps/nefi/src/start.ts -------------------------------------------------------------------------------- /apps/nefi/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blazity/nefi/HEAD/apps/nefi/src/types.ts -------------------------------------------------------------------------------- /apps/nefi/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blazity/nefi/HEAD/apps/nefi/tsconfig.json --------------------------------------------------------------------------------