Skip to content

Commit 33de8b4

Browse files
committed
Added README file in Spanish
1 parent 37bdd76 commit 33de8b4

File tree

2 files changed

+110
-0
lines changed

2 files changed

+110
-0
lines changed

Diff for: README.md

+61
Original file line numberDiff line numberDiff line change
@@ -4,42 +4,103 @@ Support code for ASK Developer Training Course for multiple locales. This is pro
44

55
## Part 1 - Alexa-Hosted Skills (preset - Hello World)
66

7+
1. Development and Production Lambda Stages (AHS branches)
8+
2. Lambda Dependencies (package.json, requires in code)
9+
3. Handler as processor of incoming requests. Handler structure
10+
4. Request Types (LaunchRequest, IntentRequest, SessionEndedRequest)
11+
5. Skill Builder (custom vs standard) and its functions
12+
6. Reflector (catch all intent handler)
13+
7. Out-of-domain utterances (*)
14+
715
[Learn more](./01)
816

917
## Part 2 - Skill Internationalization (i18n) and Interceptors
1018

19+
1. Multiple models per locale
20+
2. Key/value string resources for i18n
21+
3. Enriching handlerInput with t function via interceptor
22+
4. Attribute manager as key/value store
23+
5. High level attribute types (session(short term), persistent(long term))
24+
6. Changing locale on Build tab and on Test tab (test both locales)
25+
1126
[Learn more](./02)
1227

1328
## Part 3 - Slots, Slot Validation and Automatic Dialog Delegation
1429

30+
1. Slots explanation
31+
2. Built in and custom slot types
32+
3. Synonyms (minimal, we're not using synonyms, eg. January -> first month)
33+
4. Required Slots & Prompts
34+
5. Slot Validation
35+
6. Auto-Delegate, Dialog Delegation Strategy
36+
7. Utterance Profiler
37+
8. Intent Confirmation
38+
9. Basic Intent Chaining
39+
1540
[Learn more](./03)
1641

1742
## Part 4 - Persistence
1843

44+
1. Session attributes
45+
2. Persistent attributes
46+
3. Persistence adapters (S3 and DynamoDB) / detect if lambda is Alexa hosted
47+
4. Copy session attributes to and from persistent attributes via interceptors
48+
5. Async/await
49+
6. Session counter (to say eg. "welcome back")
50+
1951
[Learn more](./04)
2052

2153
## Part 5 - Accessing ASK APIs
2254

55+
1. Service API (User Profile API - given name)
56+
2. Settings API (timezone)
57+
3. SSML (speechcons and audio files)
58+
4. Array capable localisation interceptor
59+
5. String replacement with plurals support
60+
2361
[Learn more](./05)
2462

2563
## Part 6 - Reminders API
2664

65+
1. Reminders API
66+
2. AMAZON.SearchQuery
67+
3. Intent Confirmation (again)
68+
2769
[Learn more](./06)
2870

2971
## Part 7 - Accessing External APIs
3072

73+
1. Fetch external API (async/await)
74+
2. Progressive Response
75+
3176
[Learn more](./07)
3277

3378
## Part 8 - Alexa Presentation Language (I)
3479

80+
1. APL RenderDocument and APL Directive
81+
2. APL Databinding and APL Authoring Tool
82+
3. APL Styles, Layouts and ViewPorts
83+
4. APL Transformers (Text to Hint)
84+
5. Home Cards
85+
6. Media storage in Alexa-hosted Skills
86+
3587
[Learn more](./08)
3688

3789
## Part 9 - Alexa Presentation Language (II)
3890

91+
1. APL Authoring Tool
92+
2. APL Layouts & Sequences
93+
3. APL Transformers (Text to Hint)
94+
4. APL Touch Wrapper
95+
3996
[Learn more](./09)
4097

4198
## Part 10 - ASK Command Line Interface (CLI)
4299

100+
1. Configuring the ASK-CLI with personal AWS account support
101+
2. Cloning an Alexa Hosted Skill
102+
3. Editing a skill in code and deploying the skill
103+
43104
[Learn more](./10)
44105

45106
## License

Diff for: README_ES.md

+49
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
# Feliz Cumpleaños: una skill para nuestro curso de entrenamiento en ASK
2+
3+
Este repositiorio contiene el código de soporte para el Curso de Desarrollo Completo de Skills Alexa publicado en KeepCoding: (https://alexa.design/es-videos)
4+
5+
Como el código ha ido evolucionando y ha sido restructurado, a continuación proveemos los enlaces al estado del código fuente del momento justo en que se grabó cada video
6+
7+
## Parte 1 - Alexa-Hosted Skills (Hello World)
8+
9+
[alexa.design/es-videos-code1](https://alexa.design/es-videos-code1)
10+
11+
## Parte 2 - Internacionalización de Skills (i18n) e Interceptores
12+
13+
[alexa.design/es-videos-code2](https://alexa.design/es-videos-code2)
14+
15+
## Parte 3 - Slots, Validación de Slots y Delegación Automática de Diálogo
16+
17+
[alexa.design/es-videos-code3](https://alexa.design/es-videos-code3)
18+
19+
## Parte 4 - Persistencia
20+
21+
[alexa.design/es-videos-code4](https://alexa.design/es-videos-code4)
22+
23+
## Parte 5 - Acceso a APIs de ASK
24+
25+
[alexa.design/es-videos-code5](https://alexa.design/es-videos-code5)
26+
27+
## Parte 6 - API de Recordatorios
28+
29+
[alexa.design/es-videos-code6](https://alexa.design/es-videos-code6)
30+
31+
## Parte 7 - Acceso a APIs Externas
32+
33+
[alexa.design/es-videos-code7](https://alexa.design/es-videos-code7)
34+
35+
## Parte 8 - Alexa Presentation Language (I)
36+
37+
[alexa.design/es-videos-code8](https://alexa.design/es-videos-code8)
38+
39+
## Parte 9 - Alexa Presentation Language (II)
40+
41+
[alexa.design/es-videos-code9](https://alexa.design/es-videos-code9)
42+
43+
## Parte 10 - Interfaz de Línea de Comandos ASK (ASK CLI)
44+
45+
[alexa.design/es-videos-code10](https://alexa.design/es-videos-code10)
46+
47+
## Licencia
48+
49+
Este proyecto tiene licencia Amazon Software License

0 commit comments

Comments
 (0)