gitextract_6dvov9b0/ ├── .changeset/ │ ├── README.md │ └── config.json ├── .eslintrc.cjs ├── .gitignore ├── .husky/ │ └── pre-commit ├── .npmignore ├── .npmrc ├── LICENSE ├── README.md ├── core/ │ ├── CHANGELOG.md │ ├── README.md │ ├── fix-ono.sh │ ├── fixtures/ │ │ └── oases/ │ │ ├── invalid-securities.yaml │ │ ├── no-security.yaml │ │ └── petstore.yaml │ ├── index.ts │ ├── jest.config.js │ ├── package.json │ ├── src/ │ │ ├── ai/ │ │ │ ├── __tests__/ │ │ │ │ └── api-agent.test.ts │ │ │ ├── api-agent.ts │ │ │ └── tools/ │ │ │ ├── __tests__/ │ │ │ │ ├── parse-arguments.test.ts │ │ │ │ └── select-operation.test.ts │ │ │ ├── parse-arguments.ts │ │ │ └── select-operation.ts │ │ └── api/ │ │ ├── __tests__/ │ │ │ ├── oas-loader.test.ts │ │ │ ├── operation.test.ts │ │ │ └── security.test.ts │ │ ├── oas-loader.ts │ │ ├── operation.ts │ │ └── security.ts │ └── tsconfig.json ├── package.json ├── packages/ │ ├── eslint-config-custom/ │ │ ├── index.js │ │ └── package.json │ └── tsconfig/ │ ├── base.json │ ├── nextjs.json │ ├── package.json │ └── react-library.json ├── server/ │ ├── README.md │ ├── app/ │ │ ├── layout.tsx │ │ └── page.tsx │ ├── next-env.d.ts │ ├── next.config.js │ ├── oases/ │ │ └── open-ai.yaml │ ├── package.json │ ├── pages/ │ │ └── api/ │ │ ├── api2ai.config.ts │ │ └── run.ts │ └── tsconfig.json └── turbo.json