소스 정보
- 저장소
- tools-only/X-Skills
- 최근 소스 활동
- 2026년 2월 9일 04:08
- 감지된 SKILL.md 언어
- 영어
- 스타
- 7
- 포크
- 1
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/tools-only/X-Skills --skill genkit-flow-architect명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
Index of Build Systems Skills
Coordination patterns for distributed dataflow systems including barriers, epochs, and distributed snapshots
Windowing, sessionization, time-series aggregation, and late data handling for streaming systems
SOC 직업 분류 기준
SKILL.md 표시 중
| name | genkit-flow-architect |
| description | Expert Firebase Genkit flow architect specializing in designing... |
| capabilities | ["Task automation","Intelligent assistance"] |
| model | sonnet |
You are an expert Firebase Genkit architect specializing in designing, implementing, and debugging production-grade AI flows using Genkit 1.0+ across Node.js, Python (Alpha), and Go.
import { genkit, z } from 'genkit';
import { googleAI, gemini15ProLatest } from '@genkit-ai/googleai';
const ai = genkit({
plugins: [googleAI()],
model: gemini15ProLatest,
});
const myFlow = ai.defineFlow(
{
name: 'menuSuggestionFlow',
inputSchema: z.string(),
outputSchema: z.string(),
},
async (subject) => {
const { text } = await ai.generate({
model: gemini15ProLatest,
prompt: `Suggest a menu for ${subject}.`,
});
return text;
}
);
from genkit import genkit, z
from genkit.plugins import google_ai
ai = genkit(
plugins=[google_ai.google_ai()],
model="gemini-2.5-flash"
)
@ai.flow
async def menu_suggestion_flow(subject: str) -> str:
response = await ai.generate(
model="gemini-2.5-flash",
prompt=f"Suggest a menu for {subject}."
)
return response.text
package main
import (
"context"
"github.com/firebase/genkit/go/genkit"
"github.com/firebase/genkit/go/plugins/googleai"
)
func menuSuggestionFlow(ctx context.Context, subject string) (string, error) {
response, err := genkit.Generate(ctx,
&genkit.GenerateRequest{
Model: googleai.Gemini25Flash,
Prompt: genkit.Text("Suggest a menu for " + subject),
},
)
if err != nil {
return "", err
}
return response.Text(), nil
}
import { retrieve } from '@genkit-ai/ai/retriever';
import { textEmbeddingGecko } from '@genkit-ai/googleai';
const myRetriever = ai.defineRetriever(
{
name: 'myRetriever',
configSchema: z.object({ k: z.number() }),
},
async (query, config) => {
const embedding = await ai.embed({
embedder: textEmbeddingGecko,
content: query,
});
// Perform vector search
const results = await vectorDB.search(embedding, config.k);
return results;
}
);
const ragFlow = ai.defineFlow(async (query) => {
const docs = await retrieve({ retriever: myRetriever, query, config: { k: 5 } });
const { text } = await ai.generate({
model: gemini15ProLatest,
prompt: `Answer based on these docs: ${docs}\n\nQuestion: ${query}`,
});
return text;
});
const weatherTool = ai.defineTool(
{
name: 'getWeather',
description: 'Get weather for a location',
inputSchema: z.object({
location: z.string(),
}),
outputSchema: z.object({
temperature: z.number(),
conditions: z.string(),
}),
},
async ({ location }) => {
// Call weather API
return { temperature: 72, conditions: 'sunny' };
}
);
const agentFlow = ai.defineFlow(async (input) => {
const { text } = await ai.generate({
model: gemini15ProLatest,
prompt: input,
tools: [weatherTool],
});
return text;
});
Activate this agent when the user mentions:
This agent can collaborate with ADK agents for: