Token导航 LogoToken导航TokenDH.com
前端设计需要联网github未标认证来源可访问许可证需确认审计提醒

architecture-rendering建筑效果图

Agent Skill

architecture-rendering 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

4,260

周安装

183

GitHub Stars

12

下载量

1,493
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:architecture-rendering(建筑效果图)
来源仓库:https://github.com/eachlabs/skills
仓库路径:skills/architecture-rendering
安装命令:
npx skills add https://github.com/eachlabs/skills --skill architecture-rendering
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/eachlabs/skills --skill architecture-rendering

简介

该技能生成建筑可视化效果图,支持从草图到照片级渲染的多种视角输出。

  • 适用于建筑师、室内设计师与房地产开发商,提供外景、内饰与航拍等专业视图。
  • 通过文本描述或平面图输入,自动生成带材质、灯光与景观的沉浸式视觉呈现。
  • 安装需确认是否允许调用外部渲染引擎或生成图像文件,建议评估输出格式与使用限制。
  • 不提供三维建模功能,依赖输入素材质量,结果可能受提示词精度影响。

SKILL.md

Architecture Rendering

Generate stunning architectural visualizations using each::sense. This skill creates photorealistic renders from sketches, floor plans, and text descriptions for architects, interior designers, real estate developers, and visualization studios.

Features

  • Exterior Renders: Photorealistic building exteriors with landscaping and context
  • Interior Visualization: Detailed interior spaces with furniture, lighting, and materials
  • Sketch to Render: Transform hand-drawn sketches into photorealistic images
  • Aerial Views: Bird's eye perspectives and drone-style shots
  • Night Scenes: Dramatic nighttime renders with artificial lighting
  • Construction Visualization: Progress renders and phased development views
  • Historical Restoration: Visualize restored heritage buildings
  • Landscape Architecture: Gardens, parks, and outdoor spaces

Quick Start

curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Create a photorealistic exterior render of a modern minimalist house with floor-to-ceiling glass windows, white concrete walls, flat roof, surrounded by a manicured garden with a pool"}],
    "model": "eachsense/beta",
    "stream": true,
    "mode": "max"
  }'

Common Render Types & Specifications

Render TypeTypical Aspect RatioBest For
Exterior Hero Shot16:9Marketing, presentations
Interior Room View4:3 or 16:9Interior design proposals
Aerial/Bird's Eye16:9 or 1:1Site plans, masterplans
Vertical Facade9:16 or 3:4Social media, tall buildings
Construction Progress16:9Client updates, documentation

Use Case Examples

1. Exterior Building Render

curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Create a photorealistic exterior render of a contemporary three-story residential building. Features: exposed concrete and timber cladding, large balconies with glass railings, green roof terrace, floor-to-ceiling windows. Environment: urban street setting, mature trees, late afternoon golden hour lighting, slight overcast for soft shadows. Professional architectural photography style."}],
    "model": "eachsense/beta",
    "stream": true,
    "mode": "max"
  }'

2. Interior Architectural Render

curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Create a photorealistic interior render of a luxury open-plan living room. Features: double-height ceiling with exposed wooden beams, polished concrete floors, a large sectional sofa in cream fabric, floor-to-ceiling windows overlooking mountains, modern fireplace with black steel surround, pendant lighting fixtures. Style: Scandinavian minimalism meets industrial. Warm natural daylight flooding through windows."}],
    "model": "eachsense/beta",
    "stream": true,
    "mode": "max"
  }'

3. Sketch to Render Conversion

curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Convert this architectural sketch into a photorealistic render. Interpret it as a modern office building with glass curtain wall facade, steel structural elements visible, rooftop garden. Add realistic context: urban setting, pedestrians, cars, trees. Professional architectural visualization quality, sunny day with blue sky and some clouds."}],
    "model": "eachsense/beta",
    "stream": true,
    "mode": "max",
    "image_urls": ["https://example.com/architecture-sketch.jpg"]
  }'

4. Modern House Visualization

curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Generate a photorealistic render of a modern single-family home. Architecture: two-story with cantilevered upper floor, white stucco exterior, dark bronze window frames, integrated garage, flat roof with hidden parapets. Landscaping: drought-tolerant native plants, gravel pathways, specimen olive tree. Setting: hillside lot with city views in background. Time: dusk with interior lights glowing warmly, exterior accent lighting."}],
    "model": "eachsense/beta",
    "stream": true,
    "mode": "max"
  }'

5. Commercial Building Render

curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Create a professional architectural visualization of a 20-story commercial office tower. Design: curtain wall glass facade with vertical aluminum fins for solar shading, ground floor retail with double-height lobby, green terraces every 5 floors, rooftop helipad. Context: downtown business district, plaza with water feature at entrance, people walking. Lighting: midday sun, crisp shadows, reflections in glass."}],
    "model": "eachsense/beta",
    "stream": true,
    "mode": "max"
  }'

6. Landscape Architecture Visualization

curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Render a landscape architecture design for a public urban park. Features: meandering pedestrian paths with permeable pavers, native wildflower meadows, a central pond with wooden deck overlook, children playground with natural materials, seating areas with shade structures, mature deciduous and evergreen trees. Include families enjoying the space, joggers, people walking dogs. Spring season, sunny day, vibrant green foliage."}],
    "model": "eachsense/beta",
    "stream": true,
    "mode": "max"
  }'

7. Night Scene Render

curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Create a dramatic nighttime architectural render of a luxury boutique hotel entrance. Building: Art Deco revival style with geometric patterns, brass detailing, black granite facade. Lighting: warm interior glow through large windows, facade uplighting highlighting architectural details, subtle landscape lighting, illuminated hotel sign. Scene: valet area with luxury car, doorman, guests arriving. Atmosphere: sophisticated, inviting, slight wet pavement reflections from recent rain."}],
    "model": "eachsense/beta",
    "stream": true,
    "mode": "max"
  }'

8. Aerial/Bird's Eye View

curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Generate an aerial architectural render of a mixed-use development masterplan. Layout: central public plaza, surrounding mid-rise residential buildings (6-8 stories), ground floor retail, underground parking entrances, community center with distinctive curved roof. Include: rooftop gardens, tree-lined streets, pedestrian promenades, outdoor dining areas. View: 45-degree angle bird's eye perspective, showing the full development and neighborhood context. Clear day, afternoon light."}],
    "model": "eachsense/beta",
    "stream": true,
    "mode": "max"
  }'

9. Construction Progress Visualization

curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Create a construction progress visualization showing a residential tower at 60% completion. Show: concrete core structure complete, lower floors with installed curtain wall glazing, upper floors with exposed steel framing and temporary weather protection, tower crane active, construction workers on scaffolding (safe distances), ground level site office and material staging. Style: documentary realism, overcast day for even lighting, professional construction photography look."}],
    "model": "eachsense/beta",
    "stream": true,
    "mode": "max"
  }'

10. Historical Building Restoration Render

curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Visualize a restored Victorian-era mansion. Architecture: three-story red brick with ornate white trim, wraparound porch with turned columns, steep gabled roof with decorative shingles, restored original windows with period-appropriate shutters, chimney stacks. Grounds: formal English garden with boxwood hedges, gravel carriage drive, restored iron fence and gate. Show both the historical authenticity and modern updates like subtle landscape lighting. Golden hour lighting, autumn foliage."}],
    "model": "eachsense/beta",
    "stream": true,
    "mode": "max"
  }'

Best Practices

Render Quality Tips

  • Lighting: Specify time of day and weather conditions for appropriate shadows and mood
  • Materials: Describe textures explicitly (polished concrete, brushed steel, matte wood)
  • Context: Include surroundings (streets, vegetation, people) for realism
  • Scale Reference: Add people, cars, or furniture to convey scale
  • Camera Angle: Specify perspective (eye-level, low angle, bird's eye)

Prompt Structure for Architecture

When creating architectural renders, include these elements:

  1. Building Type: Residential, commercial, institutional, mixed-use
  2. Architectural Style: Modern, contemporary, traditional, industrial
  3. Key Features: Materials, facade elements, structural systems
  4. Environment: Urban, suburban, rural, waterfront
  5. Time & Weather: Golden hour, midday, dusk, night; sunny, overcast, dramatic
  6. View Angle: Eye-level, aerial, worm's eye, three-quarter view
  7. Context Elements: People, vehicles, landscaping, neighboring buildings

Example Prompt Template

"Create a photorealistic [view type] render of a [building type].
Architecture: [style], [key features], [materials].
Environment: [setting], [landscaping].
Lighting: [time of day], [weather conditions].
Include: [context elements like people, cars, etc.]
Style: [professional architectural visualization / specific mood]."

Mode Selection

Ask your users before generating:

"Do you want fast drafts or final presentation quality?"

ModeBest ForSpeedQuality
maxFinal presentations, client deliverables, marketing materialsSlowerHighest
ecoQuick concept exploration, early design iterations, massing studiesFasterGood

Multi-Turn Design Iteration

Use session_id to iterate on architectural renders:

# Initial concept render
curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Create an exterior render of a modern beach house with large glass walls and a wooden deck"}],
    "model": "eachsense/beta",
    "stream": true,
    "session_id": "beach-house-project",
    "mode": "eco"
  }'

# Design revision
curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Add a rooftop terrace with a pergola and outdoor kitchen. Make the facade more tropical with natural stone accents."}],
    "model": "eachsense/beta",
    "stream": true,
    "session_id": "beach-house-project"
  }'

# Time of day variation
curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Create a sunset version of this design with warm lighting and the interior lights starting to glow"}],
    "model": "eachsense/beta",
    "stream": true,
    "session_id": "beach-house-project",
    "mode": "max"
  }'

Presentation Set Generation

Generate a complete set of renders for a project:

# Hero exterior shot
curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Create the main exterior hero shot of our modern villa project - front facade, golden hour, dramatic angle"}],
    "model": "eachsense/beta",
    "stream": true,
    "session_id": "villa-presentation",
    "mode": "max"
  }'

# Interior living space
curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Now create an interior render of the main living area - open plan, same modern style, afternoon light"}],
    "model": "eachsense/beta",
    "stream": true,
    "session_id": "villa-presentation",
    "mode": "max"
  }'

# Aerial site view
curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Generate an aerial view showing the villa in its landscape context - pool, garden, and property boundaries"}],
    "model": "eachsense/beta",
    "stream": true,
    "session_id": "villa-presentation",
    "mode": "max"
  }'

Error Handling

ErrorCauseSolution
Failed to create prediction: HTTP 422Insufficient balanceTop up at eachlabs.ai
Content policy violationProhibited contentAdjust prompt to comply with content policies
TimeoutComplex generationSet client timeout to minimum 10 minutes
Low quality outputInsufficient detail in promptAdd more specific architectural details, materials, lighting

Related Skills

  • each-sense - Core API documentation
  • product-photo-generation - Product visualization
  • interior-design-generation - Interior styling focus

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

31.86%
按下载量换算476

Claude

30.41%
按下载量换算454

Cursor

19.75%
按下载量换算295

Gemini CLI

9.04%
按下载量换算135

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills