{"id":44584716,"url":"https://github.com/pajaydev/strands-chat-app","last_synced_at":"2026-02-14T06:01:06.229Z","repository":{"id":330692314,"uuid":"1122219458","full_name":"pajaydev/strands-chat-app","owner":"pajaydev","description":"Next.js chat interface using AWS Bedrock and Strands SDK that answers users question and show follow up suggestions","archived":false,"fork":false,"pushed_at":"2025-12-27T21:27:30.000Z","size":113,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-12-29T00:50:57.137Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://strands-chat-app.vercel.app","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/pajaydev.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-12-24T09:54:41.000Z","updated_at":"2025-12-27T21:27:33.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/pajaydev/strands-chat-app","commit_stats":null,"previous_names":["pajaydev/strands-chat-app"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/pajaydev/strands-chat-app","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pajaydev%2Fstrands-chat-app","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pajaydev%2Fstrands-chat-app/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pajaydev%2Fstrands-chat-app/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pajaydev%2Fstrands-chat-app/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/pajaydev","download_url":"https://codeload.github.com/pajaydev/strands-chat-app/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pajaydev%2Fstrands-chat-app/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29438641,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-14T05:24:35.651Z","status":"ssl_error","status_checked_at":"2026-02-14T05:24:34.830Z","response_time":53,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-02-14T06:00:35.713Z","updated_at":"2026-02-14T06:01:06.223Z","avatar_url":"https://github.com/pajaydev.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Strands Chat App\n\nA Next.js chat interface that suggests intelligent follow-up questions using [Strands SDK](https://strandsagents.com/latest/).\n\n\u003cdiv align=\"center\"\u003e\n  \u003cimg src=\"public/strands-demo.png\" alt=\"Strands Chat Demo\" width=\"800\"/\u003e\n\u003c/div\u003e\n\n## 🚀 Live Demo\n\nTry it out: **[strands-chat-app.vercel.app](https://strands-chat-app.vercel.app)**\n\n## Features\n\n- 🤖 AI-powered chat using [AWS Bedrock](https://aws.amazon.com/bedrock) and [Strands agent](https://strandsagents.com/latest/)\n- 💡 Intelligent follow-up question suggestions (4 per response)\n- 🎨 Dark theme UI inspired by v0.app\n- 🔒 Secure credential storage (sessionStorage)\n- ⚡ Built with Next.js 15, TypeScript, and Tailwind CSS\n\n## Prerequisites\n\n- Node.js 18+ \n- AWS Account with Bedrock access\n- AWS credentials (Access Key ID, Secret Access Key, optional Session Token)\n\n## Getting Started\n\n1. **Clone the repository**\n   ```bash\n   git clone https://github.com/yourusername/strands-guided-chat.git\n   cd strands-guided-chat\n   ```\n\n2. **Install dependencies**\n   ```bash\n   npm install\n   ```\n\n3. **Run the development server**\n   ```bash\n   npm run dev\n   ```\n\n4. **Open the app**\n   Navigate to [http://localhost:3000](http://localhost:3000)\n\n5. **Configure AWS credentials**\n   Click \"Configure AWS credentials\" in the sidebar and enter your AWS credentials\n\n## Project Structure\n\n```\n├── app/                    # Next.js app directory\n│   ├── page.tsx           # Main chat page\n│   ├── layout.tsx         # Root layout\n│   └── globals.css        # Global styles \u0026 Tailwind config\n├── components/            # React components\n│   ├── MessageBubble.tsx  # Message display with markdown\n│   ├── MessageThread.tsx  # Chat message list\n│   ├── InputField.tsx     # Message input\n│   ├── QuestionCards.tsx  # Follow-up question cards\n│   ├── CredentialsPanel.tsx # AWS credentials form\n│   └── CredentialsBanner.tsx # Warning banner\n├── lib/                   # Utilities\n│   ├── schemas.ts         # Zod schemas \u0026 types\n│   ├── credentials-service.ts # Credential storage\n│   └── utils.ts           # Constants \u0026 helpers\n└── package.json\n```\n\n## Security Notes\n\n- AWS credentials are stored in **sessionStorage** (cleared on tab close)\n- No credentials are sent to any server except AWS Bedrock\n- All credential inputs are validated with Zod schemas\n- Credentials are never logged or persisted to disk\n\n## Issues\n\nFree feel to create an issue if you face any issues\n\n## Contributing\n\nContributions welcome! Please open an issue or submit a pull request.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpajaydev%2Fstrands-chat-app","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpajaydev%2Fstrands-chat-app","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpajaydev%2Fstrands-chat-app/lists"}