Vercel CLI! AI agent–driven development এখন দ্রুত popular হয়ে উঠছে।
এই chnages সাথে তাল মিলিয়ে Vercel তাদের CLI-তে নতুন capability অ্যাড করেছে, যার মাধ্যমে AI agents এখন directly Marketplace integration discover, install এবং setup guide collect করতে পারে।

এর ফলে database, authentication, logging সহ বিভিন্ন service একদম end-to-end workflow এর মধ্যে agent নিজেই configure করতে পারবে।
New Discover and Guide Commands in Vercel CLI
এই আপডেটের main power হলো দুইটি নতুন command:
vercel integration discoververcel integration guide
Agent যখন একটি নতুন application build শুরু করে, তখন প্রথমে available integration গুলো find out করা।
vercel integration discover --format=json
--format=json ইউজ করলে CLI structured JSON output দেয়, যা automation script, DevOps workflow এবং CI/CD pipeline এর জন্য খুবই হেল্পফুল।
Adding Marketplace Integrations with Automation
Integration পছন্দ করার পর agent সরাসরি add করতে পারে। উদাহরণ:
vercel integration add neon --format=json
এরপর setup guide আনার জন্য ব্যবহার করা যায়:
vercel integration guide neon
CLI documentation agent-friendly markdown format এ return করে। এতে agent সহজেই instruction parse করে প্রয়োজনীয় configuration ও integration code লিখতে পারে।
Handling Required Metadata Fields
কিছু integration এ required metadata দিতে হয়। এই ক্ষেত্রে --help command দিয়ে প্রয়োজনীয় input জানা যায়।
vercel integration add upstash/upstash-redis --help
তারপর metadata সহ add করা যায়:
vercel integration add upstash/upstash-redis -m primaryRegion=iad1 --format=json
এই প্রক্রিয়া automation কে আরও structured ও scalable করে তোলে।
Hybrid Workflow with Human Oversight
সব সিদ্ধান্ত agent একাই নেবে এমন নয়। যেমন Terms of Service accept করার মতো ক্ষেত্রে human confirmation প্রয়োজন হতে পারে।
CLI এমনভাবে build করা হয়েছে যাতে agent প্রয়োজন হলে developer এর কাছে confirmation চাইতে পারে। এতে করে automation এবং human control দুটোই balance থাকে।
Why This Update Matters for Developers
এই আপডেটের মাধ্যমে:
- AI agent দিয়ে end-to-end infrastructure setup possible
- Automation workflow আরও fast ও নির্ভুল হয়
- CI/CD pipeline integration ইজি হয়
- Developer productivity increase করে
আপনি যদি AI automation, DevOps বা modern web application build নিয়ে কাজ করেন, তাহলে Vercel CLI এর এই নতুন feature আপনার workflow কে আরও efficient করে তুলতে পারে।
সর্বশেষ version ব্যবহার করতে update করুন:
pnpm i -g vercel@latest
এরপর আপনি নিজেই AI agent workflow দিয়ে Marketplace integration automate করে দেখতে পারেন।
Summary:
The Vercel CLI now enables seamless AI agent automation for Marketplace integrations. With the new discover and guide commands, agents can automatically find, install, and configure integrations while retrieving setup documentation in an agent-friendly format. Support for --format=json makes it ideal for DevOps workflows, custom scripting, and CI/CD pipelines. This update allows developers to manage end-to-end integration setup through AI-driven automation, improving productivity and infrastructure efficiency.




