Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问clear审计未展示

citrix-storefront-deploymentCitrix 店面部署

Agent Skill

用于辅助云资源、部署、容器、基础设施和运维自动化任务。它适合让 Agent 检查配置、整理部署步骤、分析资源状态、生成排障思路或辅助云服务接入。使用时需要明确目标环境、账号权限、区域和资源组,区分本地测试与生产操作;涉及删除资源、重启服务、修改网络或权限配置时,应先确认影响范围。

总安装

751

周安装

31

GitHub Stars

公开资料未说明

下载量

246
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:citrix-storefront-deployment(Citrix 店面部署)
来源仓库:https://github.com/dray86/claude-agents
仓库路径:skills/citrix-storefront-deployment
安装命令:
npx skills add dray86/claude-agents --skill "citrix-storefront-deployment"
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

AgentSkills.tonpx skills
npx skills add dray86/claude-agents --skill "citrix-storefront-deployment"

简介

用于辅助云资源、部署、容器和基础设施运维任务。

  • 适合检查配置、整理部署步骤或分析资源状态。citrix-storefront-deployment 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 使用时需明确目标环境、账号权限和资源组,区分本地与生产操作。
  • 涉及删除资源或修改网络配置时应先评估影响范围。
  • 适用于 Codex、Claude、Cursor、Gemini CLI 等宿主环境。

SKILL.md

Citrix StoreFront Deployment

Overview

This skill provides guidance for planning, deploying, and configuring Citrix StoreFront infrastructure, including store configuration, authentication setup, high availability, and security hardening.

Architecture Considerations

Deployment Models

Single Server

  • Suitable for small environments (<500 users)
  • No built-in redundancy
  • Simple management

Server Group

  • 2-5 servers recommended for HA
  • Servers must be within 40ms latency
  • Configuration synchronized automatically
  • Load balanced via NetScaler or NLB

Multi-Site

  • Separate server groups per location
  • Optimal aggregation and roaming
  • Global Server Load Balancing (GSLB)

Sizing Guidelines

UsersServersCPUMemory
<50014 vCPU4 GB
500-200024 vCPU8 GB
2000-500038 vCPU8 GB
5000+4-58 vCPU16 GB

Deployment Instructions

Prerequisites

  1. Server Requirements

- Windows Server 2016/2019/2022 - .NET Framework 4.7.2+ - IIS with required role services - Domain joined (recommended)

  1. Network Requirements

- Static IP address - DNS records (A and optionally SRV) - Firewall rules for ports 80/443 - Access to Delivery Controllers

  1. Certificates

- SSL certificate from trusted CA - Include all DNS names (SAN) - Proper certificate chain installed

Installation Steps

  1. Install StoreFront # Mount Citrix ISO and run installer # Select StoreFront role # Default installation path: C:\Program Files\Citrix\Receiver StoreFront
  2. Initial Configuration

- Launch StoreFront Console - Create new deployment - Specify base URL (HTTPS recommended) - Configure store

  1. Add Delivery Controllers ` # PowerShell configuration $storeService = Get-STFStoreService -VirtualPath "/Citrix/Store" Add-STFStoreFarm -StoreService $storeService -FarmName "Production" -FarmType XenDesktop -Servers @("DDC1.domain.com", "DDC2.domain.com") -LoadBalance $true -Port 443 -TransportType HTTPS `

Store Configuration

# Get store service
$store = Get-STFStoreService -VirtualPath "/Citrix/Store"

# Configure store settings
Set-STFStoreService -StoreService $store `
    -LockedDown $true `
    -AllowSessionReconnect $true

# Configure subscription store (favorites)
Enable-STFStorePna -StoreService $store `
    -AllowUserPasswordChange $true

Authentication Configuration

# Get authentication service
$auth = Get-STFAuthenticationService -VirtualPath "/Citrix/StoreAuth"

# Enable authentication methods
Enable-STFAuthenticationServiceProtocol -AuthenticationService $auth `
    -Name "ExplicitForms"

# For pass-through authentication
Enable-STFAuthenticationServiceProtocol -AuthenticationService $auth `
    -Name "IntegratedWindows"

# Configure two-factor (requires Gateway)
Enable-STFAuthenticationServiceProtocol -AuthenticationService $auth `
    -Name "CitrixAGBasic"

Server Group Configuration

# On primary server - get cluster configuration
$cluster = Get-STFClusterConfiguration

# On secondary server - join group
Start-STFServerGroupJoin -AuthorizerHostName "PRIMARY-SF.domain.com" `
    -Confirm:$false

# Verify group membership
Get-STFServerGroup

# Propagate configuration changes
Publish-STFServerGroupConfiguration -Confirm:$false

High Availability

Load Balancing Options

NetScaler ADC (Recommended)

  • Layer 7 load balancing
  • Health monitoring
  • SSL offloading
  • Session persistence

Windows NLB

  • Built-in Windows feature
  • Layer 4 load balancing
  • Simpler setup
  • Limited health checks

NetScaler Configuration

# StoreFront Service Group
add serviceGroup sg_storefront SSL
bind serviceGroup sg_storefront SF1.domain.com 443
bind serviceGroup sg_storefront SF2.domain.com 443

# Monitor
add lb monitor mon_storefront STOREFRONT -storename "Store"
bind serviceGroup sg_storefront -monitorName mon_storefront

# Virtual Server
add lb vserver vs_storefront SSL 10.0.0.100 443
bind lb vserver vs_storefront sg_storefront
set lb vserver vs_storefront -persistenceType COOKIEINSERT

Security Hardening

SSL/TLS Configuration

# Require HTTPS
Set-STFWebReceiverCommunication -WebReceiverService $receiver `
    -RequiredLaunchProtocol "HTTPS"

# Configure strong ciphers via IIS/Registry
# Disable TLS 1.0, 1.1
# Enable TLS 1.2, 1.3

IIS Hardening

  • Remove default IIS headers
  • Configure custom error pages
  • Enable request filtering
  • Set appropriate timeouts
  • Enable logging

Access Control

# Configure allowed access methods
Set-STFStoreService -StoreService $store `
    -LockedDown $true

# Restrict to specific user groups
# Configure via Delivery Controller

Troubleshooting

Common Issues

  1. Store not accessible

- Check IIS application pool running - Verify DNS resolution - Check SSL certificate binding - Review firewall rules

  1. Applications not enumerating

- Verify Delivery Controller connectivity - Check farm configuration - Review StoreFront event logs - Test XML service on controllers

  1. Authentication failures

- Verify AD connectivity - Check time synchronization - Review auth service configuration - Check event logs for errors

Log Locations

  • Admin logs: C:\Program Files\Citrix\Receiver StoreFront\admin\Trace
  • Store logs: C:\Program Files\Citrix\Receiver StoreFront\services\Trace
  • Event Viewer: Applications > Citrix Delivery Services

Diagnostic Commands

# Export configuration
Export-STFConfiguration -Path "C:\Backup\sf-config.zip"

# Test farm connectivity
Test-STFStoreFarm -StoreService $store

# Check service status
Get-STFDeployment | Format-List *

Reference Materials

For detailed StoreFront information, see:

  • citrix-knowledge/domain-knowledge/comprehensive-citrix-knowledge.md
  • citrix-knowledge/runbooks/ for operational procedures

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

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

平台分布

Codex

30.19%
按下载量换算74

Antigravity

22.94%
按下载量换算56

Gemini CLI

19.04%
按下载量换算47

Claude Code

14.21%
按下载量换算35

windsurf

8.1%
按下载量换算20

OpenCode

3.17%
按下载量换算8

安全审计

暂无安全审计结果可展示。

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills