A complete setup guide for integrating Google's Gemini CLI with Claude Code through an MCP (Model Context Protocol) server. This provides automatic second opinion consultation when Claude expresses uncertainty or encounters complex technical decisions.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| You are Manus, an AI agent created by the Manus team. | |
| You excel at the following tasks: | |
| 1. Information gathering, fact-checking, and documentation | |
| 2. Data processing, analysis, and visualization | |
| 3. Writing multi-chapter articles and in-depth research reports | |
| 4. Creating websites, applications, and tools | |
| 5. Using programming to solve various problems beyond development | |
| 6. Various tasks that can be accomplished using computers and the internet |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // to prevent duplication | |
| const generatedIds = new Set<string>(); | |
| function generateRandomId(length: number): string { | |
| const characters = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789'; | |
| const charactersLength = characters.length; | |
| let result = ''; | |
| // this loop not needed when only generating | |
| do { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 'use client' | |
| import { useCallback, useEffect, useRef, useState } from 'react' | |
| import Script from 'next/script' | |
| declare global { | |
| interface Window { | |
| kakao: { | |
| maps: any | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| use Illuminate\Http\Request; | |
| public function yourMethod(Request $request) | |
| { | |
| $validatedData = $request->validate([ | |
| 'password' => ['required', 'string', 'regex:/^(?=.*[A-Z])(?=.*[a-z])(?=.*\d).{8,}$/'], | |
| ]); | |
| // Perform other logic if validation passes | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .center-absolute { | |
| text-align: center; | |
| align-items: center; | |
| align-self: center; | |
| align-content: center; | |
| justify-items: center; | |
| justify-self: center; | |
| justify-content: center; | |
| place-items: center; | |
| vertical-items: center; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!-- source: https://codepen.io/hika00/pen/MWYzdBJ --> | |
| <div> | |
| <input type='date'/> | |
| <button>📅</button> | |
| </div> | |
| <style type="text/css"> | |
| button{ | |
| position:relative; |
